Uses of Interface
org.apache.curator.framework.recipes.queue.MultiItem
-
Packages that use MultiItem Package Description org.apache.curator.framework.recipes.queue -
-
Uses of MultiItem in org.apache.curator.framework.recipes.queue
Methods in org.apache.curator.framework.recipes.queue with parameters of type MultiItem Modifier and Type Method Description voidDistributedDelayQueue. putMulti(MultiItem<T> items, long delayUntilEpoch)Add a set of items with the same priority into the queue.booleanDistributedDelayQueue. putMulti(MultiItem<T> items, long delayUntilEpoch, int maxWait, java.util.concurrent.TimeUnit unit)Same asDistributedDelayQueue.putMulti(MultiItem, long)but allows a maximum wait time if an upper bound was set viaQueueBuilder.maxItems.voidDistributedPriorityQueue. putMulti(MultiItem<T> items, int priority)Add a set of items with the same priority into the queue.booleanDistributedPriorityQueue. putMulti(MultiItem<T> items, int priority, int maxWait, java.util.concurrent.TimeUnit unit)Same asDistributedPriorityQueue.putMulti(MultiItem, int)but allows a maximum wait time if an upper bound was set viaQueueBuilder.maxItems.voidDistributedQueue. putMulti(MultiItem<T> items)Add a set of items into the queue.booleanDistributedQueue. putMulti(MultiItem<T> items, int maxWait, java.util.concurrent.TimeUnit unit)Same asDistributedQueue.putMulti(MultiItem)but allows a maximum wait time if an upper bound was set viaQueueBuilder.maxItems.voidQueuePutListener. putMultiCompleted(MultiItem<T> items)Notification that a multi item put has completed
-