Package org.jcsp.net
Interface NetChannelEndFactory
-
- All Known Implementing Classes:
MigratableChannelEndFactory,StandardNetChannelEndFactory,UnacknowledgedNetChannelEndFactory
public interface NetChannelEndFactoryThis interface defines methods for constructing Networked channel ends.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NetSharedChannelOutputcreateAny2Net(NetChannelLocation loc)Constructs aNetSharedChannelOutputobject.NetSharedChannelInputcreateNet2Any()Constructs aNetSharedChannelInputobject.NetAltingChannelInputcreateNet2One()Constructs aNetAltingChannelInputobject.NetChannelOutputcreateOne2Net(NetChannelLocation loc)Constructs aNetChannelOutputobject.
-
-
-
Method Detail
-
createNet2One
NetAltingChannelInput createNet2One()
Constructs a
NetAltingChannelInputobject.- Returns:
- the constructed
NetAltingChannelInputobject.
-
createNet2Any
NetSharedChannelInput createNet2Any()
Constructs a
NetSharedChannelInputobject.- Returns:
- the constructed
NetSharedChannelInputobject.
-
createOne2Net
NetChannelOutput createOne2Net(NetChannelLocation loc)
Constructs a
NetChannelOutputobject.- Returns:
- the constructed
NetChannelOutputobject.
-
createAny2Net
NetSharedChannelOutput createAny2Net(NetChannelLocation loc)
Constructs a
NetSharedChannelOutputobject.- Returns:
- the constructed
NetSharedChannelOutputobject.
-
-