Uses of Interface
org.jcsp.lang.SharedChannelInput
Packages that use SharedChannelInput
Package
Description
This provides classes and interfaces corresponding to the fundamental
primitives of CSP.
This is main package for JCSP.NET.
This defines filtering channels that can apply transformations to objects
as they are read and/or written.
-
Uses of SharedChannelInput in org.jcsp.lang
Classes in org.jcsp.lang that implement SharedChannelInputMethods in org.jcsp.lang that return SharedChannelInputModifier and TypeMethodDescriptionstatic <T> SharedChannelInput<T>[]
Channel.getInputArray
(Any2AnyChannel<T>[] c) This extracts the input-ends from the given channel array.static <T> SharedChannelInput<T>[]
Channel.getInputArray
(One2AnyChannel<T>[] c) This extracts the input-ends from the given channel array.Any2AnyChannel.in()
Returns the input end of the channel.Any2AnyImpl.in()
One2AnyChannel.in()
Returns the input end of the channel.One2AnyImpl.in()
-
Uses of SharedChannelInput in org.jcsp.net
Subinterfaces of SharedChannelInput in org.jcsp.netModifier and TypeInterfaceDescriptioninterface
This interface should be implemented by classes that wish to act asNetChannelInput
objects which can be used by muliple concurrent processes.Classes in org.jcsp.net that implement SharedChannelInputModifier and TypeClassDescription(package private) class
A channel for network input (RX). -
Uses of SharedChannelInput in org.jcsp.net2
Subinterfaces of SharedChannelInput in org.jcsp.net2Modifier and TypeInterfaceDescriptioninterface
Defines a networked ChannelInput that is safe to be used by multiple concurrent processes.Classes in org.jcsp.net2 that implement SharedChannelInputModifier and TypeClassDescription(package private) final class
This class is a concrete implementation of a NetSharedChannelInput, and acts as a wrapper to a Net2OneChannel, allowing safe shared access. -
Uses of SharedChannelInput in org.jcsp.util.filter
Subinterfaces of SharedChannelInput in org.jcsp.util.filterModifier and TypeInterfaceDescriptioninterface
Interface for a channel input end that supports filtering and can be shared by multiple processes.Classes in org.jcsp.util.filter that implement SharedChannelInputModifier and TypeClassDescriptionclass
This is wrapper for aSharedChannelInput
that adds read filtering.Methods in org.jcsp.util.filter that return SharedChannelInputModifier and TypeMethodDescriptionFilteredAny2AnyChannelImpl.in()
FilteredOne2AnyChannelImpl.in()
Methods in org.jcsp.util.filter with parameters of type SharedChannelInputModifier and TypeMethodDescriptionstatic FilteredSharedChannelInput
FilteredChannelEnd.createFiltered
(SharedChannelInput in) Creates a new filtered input channel end around an existing input channel end that can be shared by multiple processes.FilteredChannelEndFactory.createFiltered
(SharedChannelInput in) Creates a new filtered channel input end around an existing channel end.Constructors in org.jcsp.util.filter with parameters of type SharedChannelInputModifierConstructorDescriptionConstructs a new wrapper for the given channel input end.