EvictingQueue.remainingSize() is not available in Guava 15.

sip-call-params 5497
George Politis 10 years ago
parent 86edf04583
commit 2d83b56d5e

@ -852,7 +852,7 @@ public synchronized void stopRunning()
*/
public synchronized void queuePacket(Packet packet)
{
if (pktsToSave.remainingCapacity() == 0)
if (EVICTING_QUEUE_MAX_SIZE - pktsToSave.size() == 0)
{
logger.warn("Queue is full, packets are being evicted.");
}

Loading…
Cancel
Save