static <T> Any2AnyChannel<T> |
Channel.any2any() |
This constructs an Object carrying channel that
may be connected to any number of writer processes
and any number of reader processes.
|
static <T> Any2AnyChannel<T> |
Channel.any2any(int immunity) |
This constructs a poisonable any-any Object channel.
|
static <T> Any2AnyChannel<T> |
Channel.any2any(ChannelDataStore<T> buffer) |
This constructs an any-any Object channel with user chosen buffering size and policy.
|
static <T> Any2AnyChannel<T> |
Channel.any2any(ChannelDataStore<T> buffer,
int immunity) |
This constructs a buffered poisonable any-any Object channel.
|
static <T> Any2AnyChannel<T>[] |
Channel.any2anyArray(int size) |
This constructs an array of any-any Object channels.
|
static <T> Any2AnyChannel<T>[] |
Channel.any2anyArray(int size,
int immunity) |
This constructs an array of poisonable any-any Object channels.
|
static <T> Any2AnyChannel<T>[] |
Channel.any2anyArray(int size,
ChannelDataStore<T> buffer) |
This constructs an array of buffered any-any Object channels.
|
static <T> Any2AnyChannel<T>[] |
Channel.any2anyArray(int size,
ChannelDataStore<T> buffer,
int immunity) |
This constructs an array of buffered poisonable any-any Object channels.
|
Any2AnyChannel<T>[] |
BufferedChannelArrayFactory.createAny2Any(ChannelDataStore<T> buffer,
int n) |
Deprecated.
Creates a populated array of n Any2Any channels with the specified
buffering behaviour.
|
Any2AnyChannel<T> |
BufferedChannelFactory.createAny2Any(ChannelDataStore<T> buffer) |
Deprecated.
Creates a new Any2Any channel with the given buffering behaviour.
|
static Any2AnyChannel |
Channel.createAny2Any() |
Deprecated.
|
static Any2AnyChannel[] |
Channel.createAny2Any(int n) |
Deprecated.
|
static Any2AnyChannel |
Channel.createAny2Any(ChannelDataStore buffer) |
Deprecated.
|
static Any2AnyChannel[] |
Channel.createAny2Any(ChannelDataStore buffer,
int n) |
Deprecated.
|
Any2AnyChannel<T>[] |
ChannelArrayFactory.createAny2Any(int n) |
Deprecated.
Creates a populated array of n Any2Any channels.
|
Any2AnyChannel<T> |
ChannelFactory.createAny2Any() |
Deprecated.
Creates a new Any2Any channel.
|
Any2AnyChannel<T> |
StandardChannelFactory.createAny2Any() |
Constructs and returns an Any2AnyChannel object.
|
Any2AnyChannel[] |
StandardChannelFactory.createAny2Any(int n) |
Constructs and returns an array of Any2AnyChannel
objects.
|
Any2AnyChannel<T> |
StandardChannelFactory.createAny2Any(ChannelDataStore<T> buffer) |
Constructs and returns a Any2AnyChannel object which
uses the specified ChannelDataStore object as a buffer.
|
Any2AnyChannel<T>[] |
StandardChannelFactory.createAny2Any(ChannelDataStore<T> buffer,
int n) |
Constructs and returns an array of Any2AnyChannel objects
which use the specified ChannelDataStore object as a
buffer.
|