Static factory for creating channel end wrappers that support filtering.
Type | Name and description |
---|---|
static FilteredAltingChannelInput |
createFiltered(AltingChannelInput in) Creates a new filtered input channel end around an existing input channel end. |
static FilteredChannelInput |
createFiltered(ChannelInput in) Creates a new filtered input channel end around an existing input channel end. |
static FilteredSharedChannelInput |
createFiltered(SharedChannelInput in) Creates a new filtered input channel end around an existing input channel end that can be shared by multiple processes. |
static FilteredChannelOutput |
createFiltered(ChannelOutput out) Creates a new filtered output channel end around an existing output channel end. |
static FilteredSharedChannelOutput |
createFiltered(SharedChannelOutput out) Creates a new filtered output channel end around an existing output channel end that can be shared by multiple processes. |
Creates a new filtered input channel end around an existing input channel end. The channel end
can be used as a guard in an Alternative
.
in
- the existing channel end to create a filtered form of.Creates a new filtered input channel end around an existing input channel end.
in
- the existing channel end to create a filtered form of.Creates a new filtered input channel end around an existing input channel end that can be shared by multiple processes.
in
- the existing channel end to create a filtered form of,Creates a new filtered output channel end around an existing output channel end.
out
- the existing channel end to create a filtered form of.Creates a new filtered output channel end around an existing output channel end that can be shared by multiple processes.
out
- the existing channel end to create a filtered form of.