public class SimpleDistributedQueue
extends java.lang.Object
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 | Description |
|---|---|
SimpleDistributedQueue(org.apache.curator.framework.CuratorFramework client,
java.lang.String path) |
| Modifier and Type | Method | Description |
|---|---|---|
byte[] |
element() |
Return the head of the queue without modifying the queue.
|
protected void |
ensurePath() |
|
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[] |
poll(long timeout,
java.util.concurrent.TimeUnit unit) |
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.
|
public SimpleDistributedQueue(org.apache.curator.framework.CuratorFramework client,
java.lang.String path)
client - the clientpath - path to store queue nodespublic byte[] element()
throws java.lang.Exception
java.lang.Exception - errorsjava.util.NoSuchElementException - if the queue is emptypublic byte[] remove()
throws java.lang.Exception
java.lang.Exception - errorsjava.util.NoSuchElementException - if the queue is emptypublic byte[] take()
throws java.lang.Exception
java.lang.Exception - errorspublic boolean offer(byte[] data)
throws java.lang.Exception
data - the datajava.lang.Exception - errorspublic byte[] peek()
throws java.lang.Exception
java.lang.Exception - errorspublic byte[] poll(long timeout,
java.util.concurrent.TimeUnit unit)
throws java.lang.Exception
timeout - how long to wait before giving up, in units of
unitunit - a TimeUnit determining how to interpret the
timeout parameterjava.lang.Exception - errorspublic byte[] poll()
throws java.lang.Exception
java.lang.Exception - errorsprotected void ensurePath()
throws java.lang.Exception
java.lang.ExceptionCopyright © 2011–2018 The Apache Software Foundation. All rights reserved.