Uses of Interface
eneter.messaging.messagingsystems.messagingsystembase.IDuplexOutputChannel

Packages that use IDuplexOutputChannel
eneter.messaging.infrastructure.attachable Attaching and detaching communication channels. 
eneter.messaging.messagingsystems.androidusbcablemessagingsystem Communication with Android via the USB cable. 
eneter.messaging.messagingsystems.composites Extensions for messaging systems. 
eneter.messaging.messagingsystems.composites.authenticatedconnection Extension providing client authentication. 
eneter.messaging.messagingsystems.composites.bufferedmessagingcomposit Extension for automatic reconnect and buffering of sent messages in case the connection is not available. 
eneter.messaging.messagingsystems.composites.messagebus Extension for communication via the message bus. 
eneter.messaging.messagingsystems.composites.monitoredmessagingcomposit Extension providing monitoring the connection. 
eneter.messaging.messagingsystems.httpmessagingsystem Communication via HTTP. 
eneter.messaging.messagingsystems.messagingsystembase Messaging system interfaces. 
eneter.messaging.messagingsystems.synchronousmessagingsystem Synchronous communication within one process (like a synchronous local call). 
eneter.messaging.messagingsystems.tcpmessagingsystem Communication via TCP. 
eneter.messaging.messagingsystems.threadmessagingsystem Communication routing messages into one working thread. 
eneter.messaging.messagingsystems.threadpoolmessagingsystem Asynchronous communication using multiple threads. 
eneter.messaging.messagingsystems.udpmessagingsystem Communication via UDP. 
eneter.messaging.messagingsystems.websocketmessagingsystem Communication via Websockets. 
 

Uses of IDuplexOutputChannel in eneter.messaging.infrastructure.attachable
 

Methods in eneter.messaging.infrastructure.attachable that return IDuplexOutputChannel
 IDuplexOutputChannel IAttachableDuplexOutputChannel.getAttachedDuplexOutputChannel()
          Returns attached duplex output channel.
 

Methods in eneter.messaging.infrastructure.attachable with parameters of type IDuplexOutputChannel
 void IAttachableDuplexOutputChannel.attachDuplexOutputChannel(IDuplexOutputChannel duplexOutputChannel)
          Attaches the duplex output channel and opens the connection and starts listening to response messages.
 

Uses of IDuplexOutputChannel in eneter.messaging.messagingsystems.androidusbcablemessagingsystem
 

Methods in eneter.messaging.messagingsystems.androidusbcablemessagingsystem that return IDuplexOutputChannel
 IDuplexOutputChannel AndroidUsbCableMessagingFactory.createDuplexOutputChannel(java.lang.String channelId)
          Creates duplex output channel which can send and receive messages from the duplex input channel using Android USB cable.
 IDuplexOutputChannel AndroidUsbCableMessagingFactory.createDuplexOutputChannel(java.lang.String channelId, java.lang.String responseReceiverId)
          Creates duplex output channel which can send and receive messages from the duplex input channel using Android USB cable.
 

Uses of IDuplexOutputChannel in eneter.messaging.messagingsystems.composites
 

Methods in eneter.messaging.messagingsystems.composites that return IDuplexOutputChannel
 IDuplexOutputChannel BufferedMonitoredMessagingFactory.createDuplexOutputChannel(java.lang.String channelId)
          Creates the output channel which can send and receive messages.
 IDuplexOutputChannel BufferedMonitoredMessagingFactory.createDuplexOutputChannel(java.lang.String channelId, java.lang.String responseReceiverId)
          Creates the output channel which can send and receive messages.
 

Uses of IDuplexOutputChannel in eneter.messaging.messagingsystems.composites.authenticatedconnection
 

Methods in eneter.messaging.messagingsystems.composites.authenticatedconnection that return IDuplexOutputChannel
 IDuplexOutputChannel AuthenticatedMessagingFactory.createDuplexOutputChannel(java.lang.String channelId)
          Creates duplex output channel which performs authentication procedure during opening the connection.
 IDuplexOutputChannel AuthenticatedMessagingFactory.createDuplexOutputChannel(java.lang.String channelId, java.lang.String responseReceiverId)
          Creates duplex output channel which performs authentication procedure during opening the connection.
 

Uses of IDuplexOutputChannel in eneter.messaging.messagingsystems.composites.bufferedmessagingcomposit
 

Methods in eneter.messaging.messagingsystems.composites.bufferedmessagingcomposit that return IDuplexOutputChannel
 IDuplexOutputChannel BufferedMessagingFactory.createDuplexOutputChannel(java.lang.String channelId)
          Creates the output channel which can send messages to the input channel and receive response messages.
 IDuplexOutputChannel BufferedMessagingFactory.createDuplexOutputChannel(java.lang.String channelId, java.lang.String responseReceiverId)
          Creates the output channel which can send messages to the input channel and receive response messages.
 

Uses of IDuplexOutputChannel in eneter.messaging.messagingsystems.composites.messagebus
 

Methods in eneter.messaging.messagingsystems.composites.messagebus that return IDuplexOutputChannel
 IDuplexOutputChannel MessageBusMessagingFactory.createDuplexOutputChannel(java.lang.String channelId)
           
 IDuplexOutputChannel MessageBusMessagingFactory.createDuplexOutputChannel(java.lang.String channelId, java.lang.String responseReceiverId)
           
 

Uses of IDuplexOutputChannel in eneter.messaging.messagingsystems.composites.monitoredmessagingcomposit
 

Methods in eneter.messaging.messagingsystems.composites.monitoredmessagingcomposit that return IDuplexOutputChannel
 IDuplexOutputChannel MonitoredMessagingFactory.createDuplexOutputChannel(java.lang.String channelId)
          Creates the output channel which can send messages to the input channel and receive response messages.
 IDuplexOutputChannel MonitoredMessagingFactory.createDuplexOutputChannel(java.lang.String channelId, java.lang.String responseReceiverId)
          Creates the output channel which can send messages to the input channel and receive response messages.
 

Uses of IDuplexOutputChannel in eneter.messaging.messagingsystems.httpmessagingsystem
 

Methods in eneter.messaging.messagingsystems.httpmessagingsystem that return IDuplexOutputChannel
 IDuplexOutputChannel HttpMessagingSystemFactory.createDuplexOutputChannel(java.lang.String channelId)
          Creates duplex output channel which can send and receive messages from the duplex input channel using HTTP.
 IDuplexOutputChannel HttpMessagingSystemFactory.createDuplexOutputChannel(java.lang.String channelId, java.lang.String responseReceiverId)
          Creates duplex output channel which can send and receive messages from the duplex input channel using HTTP.
 

Uses of IDuplexOutputChannel in eneter.messaging.messagingsystems.messagingsystembase
 

Methods in eneter.messaging.messagingsystems.messagingsystembase that return IDuplexOutputChannel
 IDuplexOutputChannel IMessagingSystemFactory.createDuplexOutputChannel(java.lang.String channelId)
          Creates the output channel which can sends and receive messages from the input channel.
 IDuplexOutputChannel IMessagingSystemFactory.createDuplexOutputChannel(java.lang.String channelId, java.lang.String responseReceiverId)
          Creates the output channel which can sends and receive messages from the input channel.
 

Uses of IDuplexOutputChannel in eneter.messaging.messagingsystems.synchronousmessagingsystem
 

Methods in eneter.messaging.messagingsystems.synchronousmessagingsystem that return IDuplexOutputChannel
 IDuplexOutputChannel SynchronousMessagingSystemFactory.createDuplexOutputChannel(java.lang.String channelId)
          Creates the duplex output channel communicating with the specified duplex input channel using synchronous local call.
 IDuplexOutputChannel SynchronousMessagingSystemFactory.createDuplexOutputChannel(java.lang.String channelId, java.lang.String responseReceiverId)
          Creates the duplex output channel communicating with the specified duplex input channel using synchronous local call.
 

Uses of IDuplexOutputChannel in eneter.messaging.messagingsystems.tcpmessagingsystem
 

Methods in eneter.messaging.messagingsystems.tcpmessagingsystem that return IDuplexOutputChannel
 IDuplexOutputChannel TcpMessagingSystemFactory.createDuplexOutputChannel(java.lang.String channelId)
          Creates duplex output channel which can send and receive messages from the duplex input channel using TCP.
 IDuplexOutputChannel TcpMessagingSystemFactory.createDuplexOutputChannel(java.lang.String channelId, java.lang.String responseReceiverId)
          Creates duplex output channel which can send and receive messages from the duplex input channel using TCP.
 

Uses of IDuplexOutputChannel in eneter.messaging.messagingsystems.threadmessagingsystem
 

Methods in eneter.messaging.messagingsystems.threadmessagingsystem that return IDuplexOutputChannel
 IDuplexOutputChannel ThreadMessagingSystemFactory.createDuplexOutputChannel(java.lang.String channelId)
          Creates the output channel sending messages to the input channel and receiving response messages by using the working thread.
 IDuplexOutputChannel ThreadMessagingSystemFactory.createDuplexOutputChannel(java.lang.String channelId, java.lang.String responseReceiverId)
          Creates the output channel sending messages to the input channel and receiving response messages by using the working thread.
 

Uses of IDuplexOutputChannel in eneter.messaging.messagingsystems.threadpoolmessagingsystem
 

Methods in eneter.messaging.messagingsystems.threadpoolmessagingsystem that return IDuplexOutputChannel
 IDuplexOutputChannel ThreadPoolMessagingSystemFactory.createDuplexOutputChannel(java.lang.String channelId)
           
 IDuplexOutputChannel ThreadPoolMessagingSystemFactory.createDuplexOutputChannel(java.lang.String channelId, java.lang.String responseReceiverId)
           
 

Uses of IDuplexOutputChannel in eneter.messaging.messagingsystems.udpmessagingsystem
 

Methods in eneter.messaging.messagingsystems.udpmessagingsystem that return IDuplexOutputChannel
 IDuplexOutputChannel UdpMessagingSystemFactory.createDuplexOutputChannel(java.lang.String channelId)
          Creates duplex output channel which can send and receive messages from the duplex input channel using UDP.
 IDuplexOutputChannel UdpMessagingSystemFactory.createDuplexOutputChannel(java.lang.String channelId, java.lang.String responseReceiverId)
          Creates duplex output channel which can send and receive messages from the duplex input channel using UDP.
 

Uses of IDuplexOutputChannel in eneter.messaging.messagingsystems.websocketmessagingsystem
 

Methods in eneter.messaging.messagingsystems.websocketmessagingsystem that return IDuplexOutputChannel
 IDuplexOutputChannel WebSocketMessagingSystemFactory.createDuplexOutputChannel(java.lang.String channelId)
          Creates the duplex output channel sending messages to the duplex input channel and receiving response messages by using WebSocket.
 IDuplexOutputChannel WebSocketMessagingSystemFactory.createDuplexOutputChannel(java.lang.String channelId, java.lang.String responseReceiverId)
          Creates the duplex output channel sending messages to the duplex input channel and receiving response messages by using WebSocket.