public class FilteredChannelEnd
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
private static FilteredChannelEndFactory |
factory
The default factory for creating the channel ends.
|
Modifier | Constructor and Description |
---|---|
private |
FilteredChannelEnd()
Private constructor to prevent any instances of this static factory from being created.
|
Modifier and Type | Method 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 FilteredChannelOutput |
createFiltered(ChannelOutput out)
Creates a new filtered output channel end around an existing output 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 FilteredSharedChannelOutput |
createFiltered(SharedChannelOutput out)
Creates a new filtered output channel end around an existing output channel end that can be
shared by multiple processes.
|
private static final FilteredChannelEndFactory factory
private FilteredChannelEnd()
public static FilteredAltingChannelInput createFiltered(AltingChannelInput in)
Alternative
.in
- the existing channel end to create a filtered form of.public static FilteredChannelInput createFiltered(ChannelInput in)
in
- the existing channel end to create a filtered form of.public static FilteredSharedChannelInput createFiltered(SharedChannelInput in)
in
- the existing channel end to create a filtered form of,public static FilteredChannelOutput createFiltered(ChannelOutput out)
out
- the existing channel end to create a filtered form of.public static FilteredSharedChannelOutput createFiltered(SharedChannelOutput out)
out
- the existing channel end to create a filtered form of.