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