Uses of Interface
org.jcsp.lang.One2AnyChannel
Packages that use One2AnyChannel
Package
Description
This provides classes and interfaces corresponding to the fundamental
primitives of CSP.
This defines filtering channels that can apply transformations to objects
as they are read and/or written.
-
Uses of One2AnyChannel in org.jcsp.lang
Classes in org.jcsp.lang that implement One2AnyChannelModifier and TypeClassDescription(package private) classThis implements an any-to-any object channel with user-definable buffering, safe for use by many writers and many readers.(package private) classThis implements a one-to-any object channel, safe for use by one writer and many readers.(package private) classOne2AnyImpl<T>(package private) class(package private) classMethods in org.jcsp.lang that return One2AnyChannelModifier and TypeMethodDescriptionOne2AnyChannel<T>[]BufferedChannelArrayFactory.createOne2Any(ChannelDataStore<T> buffer, int n) Deprecated.Creates a populated array ofnOne2Anychannels with the specified buffering behaviour.BufferedChannelFactory.createOne2Any(ChannelDataStore<T> buffer) Deprecated.Creates a newOne2Anychannel with the given buffering behaviour.static One2AnyChannelChannel.createOne2Any()Deprecated.static One2AnyChannel[]Channel.createOne2Any(int n) Deprecated.Use theChannel.one2anyArray(int)method instead.static One2AnyChannelChannel.createOne2Any(ChannelDataStore buffer) Deprecated.Use theChannel.one2any(ChannelDataStore)method instead.static One2AnyChannel[]Channel.createOne2Any(ChannelDataStore buffer, int n) Deprecated.Use theChannel.one2anyArray(int,ChannelDataStore)method instead.One2AnyChannel<T>[]ChannelArrayFactory.createOne2Any(int n) Deprecated.Creates a populated array ofnOne2Anychannels.ChannelFactory.createOne2Any()Deprecated.Creates a newOne2Anychannel.StandardChannelFactory.createOne2Any()Constructs and returns aOne2AnyChannelobject.One2AnyChannel<T>[]StandardChannelFactory.createOne2Any(int n) Constructs and returns an array ofOne2AnyChannelobjects.StandardChannelFactory.createOne2Any(ChannelDataStore<T> buffer) Constructs and returns aOne2AnyChannelobject which uses the specifiedChannelDataStoreobject as a buffer.One2AnyChannel<T>[]StandardChannelFactory.createOne2Any(ChannelDataStore<T> buffer, int n) Constructs and returns an array ofOne2AnyChannelobjects which use the specifiedChannelDataStoreobject as a buffer.static <T> One2AnyChannel<T> 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 <T> One2AnyChannel<T> Channel.one2any(int immunity) This constructs a poisonable one-any Object channel.static <T> One2AnyChannel<T> Channel.one2any(ChannelDataStore<T> buffer) This constructs a one-any Object channel with user chosen buffering size and policy.static <T> One2AnyChannel<T> Channel.one2any(ChannelDataStore<T> buffer, int immunity) This constructs a buffered poisonable one-any Object channel.static <T> One2AnyChannel<T>[]Channel.one2anyArray(int size) This constructs an array of one-any Object channels.static <T> One2AnyChannel<T>[]Channel.one2anyArray(int size, int immunity) This constructs an array of poisonable one-any Object channels.static <T> One2AnyChannel<T>[]Channel.one2anyArray(int size, ChannelDataStore<T> buffer) This constructs an array of buffered one-any Object channels.static <T> One2AnyChannel<T>[]Channel.one2anyArray(int size, ChannelDataStore<T> buffer, int immunity) This constructs an array of buffered poisonable one-any Object channels.Methods in org.jcsp.lang with parameters of type One2AnyChannelModifier and TypeMethodDescriptionstatic <T> SharedChannelInput<T>[]Channel.getInputArray(One2AnyChannel<T>[] c) This extracts the input-ends from the given channel array.static <T> ChannelOutput<T>[]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.filterModifier and TypeInterfaceDescriptioninterfaceInterface for anAny2Anychannel that supports both read and write filters.Classes in org.jcsp.util.filter that implement One2AnyChannelModifier and TypeClassDescription(package private) classImplements anOne2Anychannel that supports filtering at each end.Methods in org.jcsp.util.filter that return One2AnyChannelModifier and TypeMethodDescriptionFilteredChannelFactory.createOne2Any()Creates a new One2Any channel with the filtering options set for this factory.FilteredChannelFactory.createOne2Any(int n) Constructs and returns an array ofOne2AnyChannelobjects.FilteredChannelFactory.createOne2Any(ChannelDataStore buffer) Creates a new One2Any channel with the filtering options set for this factory and the specified data buffer.FilteredChannelFactory.createOne2Any(ChannelDataStore buffer, int n) Constructs and returns an array ofOne2AnyChannelobjects with a given buffering behaviour.Constructors in org.jcsp.util.filter with parameters of type One2AnyChannelModifierConstructorDescriptionConstructs a new filtered channel from an existing channel.
Channel.one2any()method instead.