|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use One2AnyChannel | |
---|---|
org.jcsp.lang | This provides classes and interfaces corresponding to the fundamental primitives of CSP. |
org.jcsp.util.filter | This defines filtering channels that can apply transformations to objects as they are read and/or written. |
Uses of One2AnyChannel in org.jcsp.lang |
---|
Methods in org.jcsp.lang that return One2AnyChannel | ||
---|---|---|
One2AnyChannel<T> |
StandardChannelFactory.createOne2Any()
Constructs and returns a One2AnyChannel object. |
|
static One2AnyChannel |
Channel.createOne2Any()
Deprecated. Use the Channel.one2any() method instead. |
|
One2AnyChannel<T> |
ChannelFactory.createOne2Any()
Deprecated. Creates a new One2Any channel. |
|
static One2AnyChannel |
Channel.createOne2Any(ChannelDataStore buffer)
Deprecated. Use the Channel.one2any(ChannelDataStore) method instead. |
|
One2AnyChannel<T> |
StandardChannelFactory.createOne2Any(ChannelDataStore<T> buffer)
Constructs and returns a One2AnyChannel object which
uses the specified ChannelDataStore object as a buffer. |
|
One2AnyChannel<T> |
BufferedChannelFactory.createOne2Any(ChannelDataStore<T> buffer)
Deprecated. Creates a new One2Any channel with the given buffering behaviour. |
|
One2AnyChannel<T>[] |
BufferedChannelArrayFactory.createOne2Any(ChannelDataStore<T> buffer,
int n)
Deprecated. Creates a populated array of n One2Any channels with the specified
buffering behaviour. |
|
One2AnyChannel<T>[] |
StandardChannelFactory.createOne2Any(ChannelDataStore<T> buffer,
int n)
Constructs and returns an array of One2AnyChannel objects
which use the specified ChannelDataStore object as a
buffer. |
|
static One2AnyChannel[] |
Channel.createOne2Any(ChannelDataStore buffer,
int n)
Deprecated. Use the Channel.one2anyArray(int,ChannelDataStore) method instead. |
|
One2AnyChannel<T>[] |
StandardChannelFactory.createOne2Any(int n)
Constructs and returns an array of One2AnyChannel
objects. |
|
static One2AnyChannel[] |
Channel.createOne2Any(int n)
Deprecated. Use the Channel.one2anyArray(int) method instead. |
|
One2AnyChannel<T>[] |
ChannelArrayFactory.createOne2Any(int n)
Deprecated. Creates a populated array of n One2Any channels. |
|
static
|
Channel.one2any()
This constructs an Object carrying channel that may only be connected to one writer at a time, but any number of reader processes. |
|
static
|
Channel.one2any(ChannelDataStore<T> buffer)
This constructs a one-any Object channel with user chosen buffering size and policy. |
|
static
|
Channel.one2any(ChannelDataStore<T> buffer,
int immunity)
This constructs a buffered poisonable one-any Object channel. |
|
static
|
Channel.one2any(int immunity)
This constructs a poisonable one-any Object channel. |
|
static
|
Channel.one2anyArray(int size)
This constructs an array of one-any Object channels. |
|
static
|
Channel.one2anyArray(int size,
ChannelDataStore<T> buffer)
This constructs an array of buffered one-any Object channels. |
|
static
|
Channel.one2anyArray(int size,
ChannelDataStore<T> buffer,
int immunity)
This constructs an array of buffered poisonable one-any Object channels. |
|
static
|
Channel.one2anyArray(int size,
int immunity)
This constructs an array of poisonable one-any Object channels. |
Methods in org.jcsp.lang with parameters of type One2AnyChannel | ||
---|---|---|
static
|
Channel.getInputArray(One2AnyChannel<T>[] c)
This extracts the input-ends from the given channel array. |
|
static
|
Channel.getOutputArray(One2AnyChannel<T>[] c)
This extracts the output-ends from the given channel array. |
Uses of One2AnyChannel in org.jcsp.util.filter |
---|
Subinterfaces of One2AnyChannel in org.jcsp.util.filter | |
---|---|
interface |
FilteredOne2AnyChannel
Interface for an Any2Any channel that supports both read and write filters. |
Methods in org.jcsp.util.filter that return One2AnyChannel | |
---|---|
One2AnyChannel |
FilteredChannelFactory.createOne2Any()
Creates a new One2Any channel with the filtering options set for this factory. |
One2AnyChannel |
FilteredChannelFactory.createOne2Any(ChannelDataStore buffer)
Creates a new One2Any channel with the filtering options set for this factory and the specified data buffer. |
One2AnyChannel[] |
FilteredChannelFactory.createOne2Any(ChannelDataStore buffer,
int n)
Constructs and returns an array of One2AnyChannel
objects with a given buffering behaviour. |
One2AnyChannel[] |
FilteredChannelFactory.createOne2Any(int n)
Constructs and returns an array of One2AnyChannel
objects. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |