Uses of Class
org.jcsp.lang.ConnectionMessage
-
Packages that use ConnectionMessage Package Description org.jcsp.lang This provides classes and interfaces corresponding to the fundamental primitives of CSP. -
-
Uses of ConnectionMessage in org.jcsp.lang
Subclasses of ConnectionMessage in org.jcsp.lang Modifier and Type Class Description (package private) class
ConnectionClientMessage<T>
(package private) class
ConnectionClientOpenMessage<T>
(package private) class
ConnectionServerMessage<T>
Fields in org.jcsp.lang with type parameters of type ConnectionMessage Modifier and Type Field Description private AltingChannelInput<ConnectionMessage<T>>
AltingConnectionServer. altingChannel
The channel used to ALT over.private ChannelInput<ConnectionMessage<T>>
AltingConnectionServerImpl. currentInputChannel
private AltingChannelInput<ConnectionMessage<T>>
AltingConnectionClientImpl. fromServer
private AltingChannelInput<ConnectionMessage<T>>
AltingConnectionServerImpl. furtherRequestIn
private AltingChannelInput<ConnectionMessage<T>>
AltingConnectionServerImpl. openIn
(package private) ChannelOutput<ConnectionMessage<T>>
ConnectionClientOpenMessage. replyChannel
private ChannelOutput<ConnectionMessage<T>>
AltingConnectionServerImpl. toClient
Methods in org.jcsp.lang that return types with arguments of type ConnectionMessage Modifier and Type Method Description protected AltingChannelInput<ConnectionMessage<T>>
AltingConnectionServer. getAltingChannel()
Returns the channel used to implement the Guard.Method parameters in org.jcsp.lang with type arguments of type ConnectionMessage Modifier and Type Method Description protected void
AltingConnectionServer. setAltingChannel(AltingChannelInput<ConnectionMessage<T>> chan)
ConnectionServer
implementations are likely to be implemented over channels.Constructor parameters in org.jcsp.lang with type arguments of type ConnectionMessage Constructor Description AltingConnectionServer(AltingChannelInput<ConnectionMessage<T>> altingChannel)
Constructor.AltingConnectionServerImpl(AltingChannelInput<ConnectionMessage<T>> openIn, AltingChannelInput<ConnectionMessage<T>> furtherRequestIn)
Constructs a new server instance.
-