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.
- Author:
- Quickstone Technologies Limited
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NetSharedChannelOutput
createAny2Net(NetChannelLocation loc)
Constructs aNetSharedChannelOutput
object.NetSharedChannelInput
createNet2Any()
Constructs aNetSharedChannelInput
object.NetAltingChannelInput
createNet2One()
Constructs aNetAltingChannelInput
object.NetChannelOutput
createOne2Net(NetChannelLocation loc)
Constructs aNetChannelOutput
object.
-
-
-
Method Detail
-
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
NetChannelOutput createOne2Net(NetChannelLocation loc)
Constructs a
NetChannelOutput
object.- Returns:
- the constructed
NetChannelOutput
object.
-
createAny2Net
NetSharedChannelOutput createAny2Net(NetChannelLocation loc)
Constructs a
NetSharedChannelOutput
object.- Returns:
- the constructed
NetSharedChannelOutput
object.
-
-