Package | Description |
---|---|
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 | Interface and Description |
---|---|
interface |
BufferedEventsQueue<E>
A BufferedEventsQueue receives buffered events, queues them,
and then processes them on another thread.
|
Modifier and Type | Class and Description |
---|---|
class |
JABufferedEventsQueue<E>
A BufferedEventsQueue receives buffered events, queues them,
and then processes them on another thread.
|
Modifier and Type | Interface and Description |
---|---|
interface |
EventQueue<E>
An EventQueue receives events, queues them,
and then processes them on another thread.
|
Modifier and Type | Class and Description |
---|---|
class |
JAEventQueue<E>
An JAEventQueue receives messages, queues them,
and then processes them on another thread.
|
Copyright © 2012. All Rights Reserved.