Package org.jcsp.net
Interface NetBufferedChannelEndFactory
-
- All Known Implementing Classes:
StandardNetChannelEndFactory
,UnacknowledgedNetChannelEndFactory
public interface NetBufferedChannelEndFactory
This interface defines methods for constructing buffered NetworkedChannelInput
objects.- Author:
- Quickstone Technologies Limited
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description NetSharedChannelInput
createNet2Any(ChannelDataStore buffer)
Constructs aNetSharedChannelInput
object.NetAltingChannelInput
createNet2One(ChannelDataStore buffer)
Constructs aNetAltingChannelInput
object.
-
-
-
Method Detail
-
createNet2One
NetAltingChannelInput createNet2One(ChannelDataStore buffer)
Constructs aNetAltingChannelInput
object.- Parameters:
buffer
- theChannelDataStore
to use as a buffer.- Returns:
- the constructed
NetAltingChannelInput
object.
-
createNet2Any
NetSharedChannelInput createNet2Any(ChannelDataStore buffer)
Constructs aNetSharedChannelInput
object.- Parameters:
buffer
- theChannelDataStore
to use as a buffer.- Returns:
- the constructed
NetSharedChannelInput
object.
-
-