- peek() - Method in interface org.wso2.carbon.queuing.CarbonQueue
-
Retrieves, but does not remove, the head of this queue.
- peek(int) - Method in interface org.wso2.carbon.queuing.CarbonQueue
-
Retrieves, but does not remove, the given number of items from the top, which also includes
the head of this queue.
- pop() - Method in interface org.wso2.carbon.queuing.CarbonQueue
-
Retrieves and removes, the head of this queue.
- pop(int) - Method in interface org.wso2.carbon.queuing.CarbonQueue
-
Retrieves and removes, the given number of items from the top, which also includes the head
of this queue.
- push(T) - Method in interface org.wso2.carbon.queuing.CarbonQueue
-
Adds the given element onto the queue.
- push(List<T>) - Method in interface org.wso2.carbon.queuing.CarbonQueue
-
Adds the given elements onto the queue.