Package | Description |
---|---|
org.agilewiki.jactor |
Introduction to JActor
|
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.concurrent |
The concurrent package contains a number of classes that are helpful
in delivering high-performance.
|
org.agilewiki.jactor.events |
The events package supports the dispatching of one-way messages (events).
|
Modifier and Type | Method and Description |
---|---|
ThreadManager |
MailboxFactory.getThreadManager()
Returns the thread manager.
|
ThreadManager |
JAMailboxFactory.getThreadManager()
Returns the thread manager.
|
Constructor and Description |
---|
JAMailboxFactory(ThreadManager threadManager) |
Constructor and Description |
---|
JAPCMailbox(ThreadManager threadManager,
boolean autonomous,
MailboxFactory mailboxFactory)
Create a JAPCMailbox.
|
Constructor and Description |
---|
JABufferedEventsQueue(ThreadManager threadManager,
boolean autonomous)
Create a BufferedEventsQueue.
|
Modifier and Type | Class and Description |
---|---|
class |
JAThreadManager
A high performance implementation of ThreadManager.
|
Modifier and Type | Method and Description |
---|---|
static ThreadManager |
JAThreadManager.newThreadManager(int threadCount)
Create a JAThreadManager
|
static ThreadManager |
JAThreadManager.newThreadManager(int threadCount,
ThreadFactory threadFactory)
Create a JAThreadManager
|
Constructor and Description |
---|
JAEventQueue(ThreadManager threadManager,
boolean autonomous)
Creates a JAEventQueue.
|
Copyright © 2012. All Rights Reserved.