Package | Description |
---|---|
org.agilewiki.jactor.apc |
The apc package implements Asynchronous Procedure Calls (APC), or two-way messaging.
|
org.agilewiki.jactor.bufferedEvents |
The bufferedEvents package supports the dispatching of one-way messages (events),
but it buffers outgoing events and sends them only when there are no other incoming events
to process, which results in a significant improvement in throughput when under load.
|
org.agilewiki.jactor.events |
The events package supports the dispatching of one-way messages (events).
|
Modifier and Type | Method and Description |
---|---|
EventQueue<ArrayList<JAMessage>> |
JAPCMailbox.getEventQueue()
Returns the event queue.
|
EventQueue<ArrayList<JAMessage>> |
APCMailbox.getEventQueue()
Returns the event queue.
|
Modifier and Type | Method and Description |
---|---|
EventQueue<ArrayList<E>> |
JABufferedEventsQueue.getEventQueue()
Returns the event queue.
|
EventQueue<ArrayList<E>> |
BufferedEventsQueue.getEventQueue()
Returns the event queue.
|
Constructor and Description |
---|
JABufferedEventsQueue(EventQueue<ArrayList<E>> eventQueue)
Create a BufferedEventsQueue.
|
Modifier and Type | Class and Description |
---|---|
class |
JAEventQueue<E>
An JAEventQueue receives messages, queues them,
and then processes them on another thread.
|
Modifier and Type | Method and Description |
---|---|
EventQueue<E> |
JAEventQueue.getController()
Returns the controlling queue.
|
EventQueue<E> |
EventQueue.getController()
Returns the controlling queue.
|
Modifier and Type | Method and Description |
---|---|
boolean |
JAEventQueue.acquireControl(EventQueue<E> eventQueue)
Gain control of the queue.
|
boolean |
EventQueue.acquireControl(EventQueue<E> controller)
Gain control of the queue.
|
Copyright © 2012. All Rights Reserved.