EventQueueAdapter¶
-
public class
EventQueueAdapter
extends AbstractEventHandler¶ An adapter similar to the
QueueAdapter
that provides access to a queue of RSBEvent
s instead of directly to the payload data. It can also be directly registered as handler in an rsb.Listener instance and used for receiving and storing dispatched events.- Author
dklotz
Constructors¶
EventQueueAdapter¶
-
public
EventQueueAdapter
()¶ Creates an adapter with a preset unlimited queue inside.
EventQueueAdapter¶
-
public
EventQueueAdapter
(int capacity, boolean discardOldest)¶ Creates an adapter with a preset queue inside that is limited to
capacity
elements.- Parameters
capacity – capacity of the internal queue
discardOldest – if
true
, remove older events if the queue is full, otherwise block until space is available on inserts
EventQueueAdapter¶
-
public
EventQueueAdapter
(BlockingQueue<Event> queue)¶ Creates an adapter with the given queue implementation.
- Parameters
queue – The queue this adapter should fill.