Package | Description |
---|---|
org.jcsp.lang |
This provides classes and interfaces corresponding to the fundamental
primitives of CSP.
|
org.jcsp.net |
This is main package for JCSP.NET.
|
org.jcsp.util.filter |
This defines filtering channels that can apply transformations to objects
as they are read and/or written.
|
Modifier and Type | Method and Description |
---|---|
static <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.
|
SharedChannelInput<T> |
One2AnyChannel.in()
Returns the input end of the channel.
|
SharedChannelInput<T> |
Any2AnyChannel.in()
Returns the input end of the channel.
|
Modifier and Type | Interface and Description |
---|---|
interface |
NetSharedChannelInput
This interface should be implemented by classes that
wish to act as
NetChannelInput objects
which can be used by muliple concurrent processes. |
Modifier and Type | Interface and Description |
---|---|
interface |
FilteredSharedChannelInput
Interface for a channel input end that supports filtering and can be shared by multiple processes.
|
Modifier and Type | Class and Description |
---|---|
class |
FilteredSharedChannelInputWrapper
This is wrapper for a
SharedChannelInput that adds
read filtering. |
Modifier and Type | Method and Description |
---|---|
FilteredSharedChannelInput |
FilteredChannelEndFactory.createFiltered(SharedChannelInput in)
Creates a new filtered channel input end around an existing channel end.
|
static 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.
|
Constructor and Description |
---|
FilteredSharedChannelInputWrapper(SharedChannelInput in)
Constructs a new wrapper for the given channel input end.
|
Copyright © 1996–2024. All rights reserved.