Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
org.activemq.io.util.MemoryManageable

Uses of MemoryManageable in org.activemq.io.util
 

Methods in org.activemq.io.util that return MemoryManageable
 MemoryManageable MemoryBoundedQueue.dequeue()
           
 MemoryManageable MemoryBoundedQueue.dequeue(long timeInMillis)
          Dequeues a MemoryManageable from the head of the queue
 MemoryManageable MemoryBoundedQueue.dequeueNoWait()
          dequeues a MemoryManageable from the head of the queue
 MemoryManageable MemoryBoundedQueue.remove(java.lang.Object id)
          Remove a MemoryManageable by it's id
 MemoryManageable MemoryBoundedQueue.get(int index)
          retrieve a MemoryManageable at an indexed position in the queue
 MemoryManageable MemoryBoundedPrioritizedQueue.dequeue()
           
 MemoryManageable MemoryBoundedPrioritizedQueue.dequeueNoWait()
          dequeues a MemoryManageable from the head of the queue
 MemoryManageable MemoryBoundedPrioritizedQueue.remove(java.lang.Object id)
          Remove a MemoryManageable by it's id
 MemoryManageable MemoryBoundedPrioritizedQueue.get(int index)
          retrieve a MemoryManageable at an indexed position in the queue
 

Methods in org.activemq.io.util with parameters of type MemoryManageable
 void MemoryBoundedQueue.enqueueNoBlock(MemoryManageable packet)
          Enqueue a MemoryManageable without checking memory usage limits
 void MemoryBoundedQueue.enqueue(MemoryManageable packet)
          Enqueue a MemoryManageable to this queue
 void MemoryBoundedQueue.enqueueFirstNoBlock(MemoryManageable packet)
          Enqueue a packet to the head of the queue with total disregard for memory constraints
 void MemoryBoundedQueue.enqueueFirst(MemoryManageable packet)
          Enqueue a MemoryManageable to the head of the queue
 boolean MemoryBoundedQueue.remove(MemoryManageable packet)
          Remove a packet from the queue
protected  void MemoryBoundedQueue.incrementMemoryUsed(MemoryManageable packet)
           
protected  void MemoryBoundedQueue.decrementMemoryUsed(MemoryManageable packet)
           
 void MemoryBoundedPrioritizedQueue.enqueueNoBlock(MemoryManageable packet)
          Enqueue a MemoryManageable without checking memory usage limits
 void MemoryBoundedPrioritizedQueue.enqueueFirstNoBlock(MemoryManageable packet)
          Enqueue a packet to the head of the queue with total disregard for memory constraints
 boolean MemoryBoundedPrioritizedQueue.remove(MemoryManageable packet)
          Remove a packet from the queue
private  int MemoryBoundedPrioritizedQueue.getPacketPriority(MemoryManageable packet)