public class ShellBoltMessageQueue extends Object implements Serializable
A data structure for ShellBolt which includes two queues (FIFO), which one is for task ids (unbounded), another one is for bolt msg (bounded).
Constructor and Description |
---|
ShellBoltMessageQueue() |
ShellBoltMessageQueue(int boltMsgCapacity) |
Modifier and Type | Method and Description |
---|---|
Object |
poll(long timeout,
TimeUnit unit)
poll() is a core feature of ShellBoltMessageQueue.
|
void |
putBoltMsg(BoltMsg boltMsg)
put bolt message to its queue.
|
void |
putTaskIds(List<Integer> taskIds)
put list of task id to its queue.
|
public ShellBoltMessageQueue(int boltMsgCapacity)
public ShellBoltMessageQueue()
public void putTaskIds(List<Integer> taskIds)
put list of task id to its queue.
taskIds
- task ids that received the tuplespublic void putBoltMsg(BoltMsg boltMsg) throws InterruptedException
put bolt message to its queue.
boltMsg
- BoltMsg to pass to subprocessInterruptedException
public Object poll(long timeout, TimeUnit unit) throws InterruptedException
poll() is a core feature of ShellBoltMessageQueue. It retrieves and removes the head of one queues, waiting up to the specified wait time if necessary for an element to become available. There’s priority that what queue it retrieves first, taskIds is higher than boltMsgQueue.
timeout
- how long to wait before giving up, in units of unitunit
- a TimeUnit determining how to interpret the timeout parameterList<Integer>
if task id is available, BoltMsg if task id is not available but bolt message is available, null if the specified waiting time elapses before an element is available.InterruptedException
Copyright © 2022 The Apache Software Foundation. All rights reserved.