Package org.jcsp.net
Interface NetLabelledBufferedChannelEndFactory
-
- All Known Implementing Classes:
StandardNetChannelEndFactory,UnacknowledgedNetChannelEndFactory
public interface NetLabelledBufferedChannelEndFactoryThis factory constructs buffered
NetChannelInputobjects which have labelled VCN's.See
NetLabelledChannelEndFactoryfor an explanation of labelled VCN's.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NetSharedChannelInputcreateNet2Any(java.lang.String label, ChannelDataStore buffer)Constructs a bufferedNetSharedChannelInputwhich has a VCN assigned with the specified label.NetAltingChannelInputcreateNet2One(java.lang.String label, ChannelDataStore buffer)Constructs a bufferedNetAltingChannelInputwhich has a VCN assigned with the specified label.
-
-
-
Method Detail
-
createNet2One
NetAltingChannelInput createNet2One(java.lang.String label, ChannelDataStore buffer)
Constructs a bufferedNetAltingChannelInputwhich has a VCN assigned with the specified label.- Parameters:
label- the label to apply to the channel's VCN.buffer- theChannelDataStoreto use.- Returns:
- the constructed
NetAltingChannelInputobject.
-
createNet2Any
NetSharedChannelInput createNet2Any(java.lang.String label, ChannelDataStore buffer)
Constructs a bufferedNetSharedChannelInputwhich has a VCN assigned with the specified label.- Parameters:
label- the label to apply to the channel's VCN.buffer- theChannelDataStoreto use.- Returns:
- the constructed
NetSharedChannelInputobject.
-
-