Package org.jcsp.lang
Interface BufferedChannelIntFactory
-
- All Known Implementing Classes:
StandardChannelIntFactory
public interface BufferedChannelIntFactoryDeprecated.These channel factories are deprecated in favour of the new one2one() methods in the Channel class.Defines an interface for a factory that can create integer carrying channels with user-definable buffering semantics.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Any2AnyChannelIntcreateAny2Any(ChannelDataStoreInt buffer)Deprecated.Creates a newAny2Anychannel with the given buffering behaviour.Any2OneChannelIntcreateAny2One(ChannelDataStoreInt buffer)Deprecated.Creates a newAny2Onechannel with the given buffering behaviour.One2AnyChannelIntcreateOne2Any(ChannelDataStoreInt buffer)Deprecated.Creates a newOne2Anychannel with the given buffering behaviour.One2OneChannelIntcreateOne2One(ChannelDataStoreInt buffer)Deprecated.Creates a newOne2Onechannel with the given buffering behaviour.
-
-
-
Method Detail
-
createOne2One
One2OneChannelInt createOne2One(ChannelDataStoreInt buffer)
Deprecated.Creates a newOne2Onechannel with the given buffering behaviour.- Parameters:
buffer- the buffer implementation to use.- Returns:
- the created channel.
-
createAny2One
Any2OneChannelInt createAny2One(ChannelDataStoreInt buffer)
Deprecated.Creates a newAny2Onechannel with the given buffering behaviour.- Parameters:
buffer- the buffer implementation to use.- Returns:
- the created channel.
-
createOne2Any
One2AnyChannelInt createOne2Any(ChannelDataStoreInt buffer)
Deprecated.Creates a newOne2Anychannel with the given buffering behaviour.- Parameters:
buffer- the buffer implementation to use.- Returns:
- the created channel.
-
createAny2Any
Any2AnyChannelInt createAny2Any(ChannelDataStoreInt buffer)
Deprecated.Creates a newAny2Anychannel with the given buffering behaviour.- Parameters:
buffer- the buffer implementation to use.- Returns:
- the created channel.
-
-