Package org.jcsp.net
Interface NetChannelEndFactory
- All Known Implementing Classes:
MigratableChannelEndFactory
,StandardNetChannelEndFactory
,UnacknowledgedNetChannelEndFactory
public interface NetChannelEndFactory
This interface defines methods for constructing Networked channel ends.
-
Method Summary
Modifier and TypeMethodDescriptionConstructs aNetSharedChannelOutput
object.Constructs aNetSharedChannelInput
object.Constructs aNetAltingChannelInput
object.Constructs aNetChannelOutput
object.
-
Method Details
-
createNet2One
NetAltingChannelInput createNet2One()Constructs a
NetAltingChannelInput
object.- Returns:
- the constructed
NetAltingChannelInput
object.
-
createNet2Any
NetSharedChannelInput createNet2Any()Constructs a
NetSharedChannelInput
object.- Returns:
- the constructed
NetSharedChannelInput
object.
-
createOne2Net
Constructs a
NetChannelOutput
object.- Returns:
- the constructed
NetChannelOutput
object.
-
createAny2Net
Constructs a
NetSharedChannelOutput
object.- Returns:
- the constructed
NetSharedChannelOutput
object.
-