Class SimpleDistributedQueue
java.lang.Object
org.apache.curator.framework.recipes.queue.SimpleDistributedQueue
Drop in replacement for: org.apache.zookeeper.recipes.queue.DistributedQueue that is part of the ZooKeeper distribution
This class is data compatible with the ZK version. i.e. it uses the same naming scheme so it can read from an existing queue
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbyte[]
element()
Return the head of the queue without modifying the queue.protected void
boolean
offer
(byte[] data) Inserts data into queue.byte[]
peek()
Returns the data at the first element of the queue, or null if the queue is empty.byte[]
poll()
Attempts to remove the head of the queue and return it.byte[]
Retrieves and removes the head of this queue, waiting up to the specified wait time if necessary for an element to become available.byte[]
remove()
Attempts to remove the head of the queue and return it.byte[]
take()
Removes the head of the queue and returns it, blocks until it succeeds.
-
Constructor Details
-
SimpleDistributedQueue
- Parameters:
client
- the clientpath
- path to store queue nodes
-
-
Method Details
-
element
Return the head of the queue without modifying the queue.- Returns:
- the data at the head of the queue.
- Throws:
Exception
- errorsNoSuchElementException
- if the queue is empty
-
remove
Attempts to remove the head of the queue and return it.- Returns:
- The former head of the queue
- Throws:
Exception
- errorsNoSuchElementException
- if the queue is empty
-
take
Removes the head of the queue and returns it, blocks until it succeeds.- Returns:
- The former head of the queue
- Throws:
Exception
- errors
-
offer
Inserts data into queue.- Parameters:
data
- the data- Returns:
- true if data was successfully added
- Throws:
Exception
- errors
-
peek
Returns the data at the first element of the queue, or null if the queue is empty.- Returns:
- data at the first element of the queue, or null.
- Throws:
Exception
- errors
-
poll
Retrieves and removes the head of this queue, waiting up to the specified wait time if necessary for an element to become available.- Parameters:
timeout
- how long to wait before giving up, in units of unitunit
- a TimeUnit determining how to interpret the timeout parameter- Returns:
- the head of this queue, or null if the specified waiting time elapses before an element is available
- Throws:
Exception
- errors
-
poll
Attempts to remove the head of the queue and return it. Returns null if the queue is empty.- Returns:
- Head of the queue or null.
- Throws:
Exception
- errors
-
ensurePath
- Throws:
Exception
-