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

Packages that use IDuplexInputChannel
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 IDuplexInputChannel in eneter.messaging.infrastructure.attachable
 

Methods in eneter.messaging.infrastructure.attachable that return IDuplexInputChannel
 IDuplexInputChannel IAttachableDuplexInputChannel.getAttachedDuplexInputChannel()
          Returns attached duplex input channel.
 

Methods in eneter.messaging.infrastructure.attachable that return types with arguments of type IDuplexInputChannel
 java.lang.Iterable<IDuplexInputChannel> IAttachableMultipleDuplexInputChannels.getAttachedDuplexInputChannels()
          Returns attached input channels.
 

Methods in eneter.messaging.infrastructure.attachable with parameters of type IDuplexInputChannel
 void IAttachableMultipleDuplexInputChannels.attachDuplexInputChannel(IDuplexInputChannel duplexInputChannel)
          Attaches the duplex input channel and starts listening to messages.
 void IAttachableDuplexInputChannel.attachDuplexInputChannel(IDuplexInputChannel duplexInputChannel)
          Attaches the duplex input channel and starts listening to messages.
 

Uses of IDuplexInputChannel in eneter.messaging.messagingsystems.androidusbcablemessagingsystem
 

Methods in eneter.messaging.messagingsystems.androidusbcablemessagingsystem that return IDuplexInputChannel
 IDuplexInputChannel AndroidUsbCableMessagingFactory.createDuplexInputChannel(java.lang.String channelId)
          Not supported.
 

Uses of IDuplexInputChannel in eneter.messaging.messagingsystems.composites
 

Methods in eneter.messaging.messagingsystems.composites that return IDuplexInputChannel
 IDuplexInputChannel BufferedMonitoredMessagingFactory.createDuplexInputChannel(java.lang.String channelId)
          Creates the input channel which can receive and send messages.
 

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

Methods in eneter.messaging.messagingsystems.composites.authenticatedconnection that return IDuplexInputChannel
 IDuplexInputChannel AuthenticatedMessagingFactory.createDuplexInputChannel(java.lang.String channelId)
          Creates duplex input channel which performs the authentication procedure.
 

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

Methods in eneter.messaging.messagingsystems.composites.bufferedmessagingcomposit that return IDuplexInputChannel
 IDuplexInputChannel BufferedMessagingFactory.createDuplexInputChannel(java.lang.String channelId)
          Creates the input channel which can receive messages from the output channel and send response messages.
 

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

Methods in eneter.messaging.messagingsystems.composites.messagebus that return IDuplexInputChannel
 IDuplexInputChannel MessageBusMessagingFactory.createDuplexInputChannel(java.lang.String channelId)
           
 

Methods in eneter.messaging.messagingsystems.composites.messagebus with parameters of type IDuplexInputChannel
 void IMessageBus.attachDuplexInputChannels(IDuplexInputChannel serviceInputChannel, IDuplexInputChannel clientInputChannel)
          Attaches input channels which are used for the communication with the message bus.
 

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

Methods in eneter.messaging.messagingsystems.composites.monitoredmessagingcomposit that return IDuplexInputChannel
 IDuplexInputChannel MonitoredMessagingFactory.createDuplexInputChannel(java.lang.String channelId)
          Creates the input channel which can receive messages from the output channel and send response messages.
 

Uses of IDuplexInputChannel in eneter.messaging.messagingsystems.httpmessagingsystem
 

Methods in eneter.messaging.messagingsystems.httpmessagingsystem that return IDuplexInputChannel
 IDuplexInputChannel HttpMessagingSystemFactory.createDuplexInputChannel(java.lang.String channelId)
          Creates the duplex input channel which can receive and send messages to the duplex output channel using UDP.
 

Uses of IDuplexInputChannel in eneter.messaging.messagingsystems.messagingsystembase
 

Methods in eneter.messaging.messagingsystems.messagingsystembase that return IDuplexInputChannel
 IDuplexInputChannel IMessagingSystemFactory.createDuplexInputChannel(java.lang.String channelId)
          Creates the input channel which can receive and send messages to the output channel.
 

Uses of IDuplexInputChannel in eneter.messaging.messagingsystems.synchronousmessagingsystem
 

Methods in eneter.messaging.messagingsystems.synchronousmessagingsystem that return IDuplexInputChannel
 IDuplexInputChannel SynchronousMessagingSystemFactory.createDuplexInputChannel(java.lang.String channelId)
          Creates the duplex input channel listening to messages on the specified channel id.
 

Uses of IDuplexInputChannel in eneter.messaging.messagingsystems.tcpmessagingsystem
 

Methods in eneter.messaging.messagingsystems.tcpmessagingsystem that return IDuplexInputChannel
 IDuplexInputChannel TcpMessagingSystemFactory.createDuplexInputChannel(java.lang.String channelId)
          Creates the duplex input channel which can receive and send messages to the duplex output channel using TCP.
 

Uses of IDuplexInputChannel in eneter.messaging.messagingsystems.threadmessagingsystem
 

Methods in eneter.messaging.messagingsystems.threadmessagingsystem that return IDuplexInputChannel
 IDuplexInputChannel ThreadMessagingSystemFactory.createDuplexInputChannel(java.lang.String channelId)
          Creates the input channel receiving messages from the output channel and sending back response messages by using the working thread.
 

Uses of IDuplexInputChannel in eneter.messaging.messagingsystems.threadpoolmessagingsystem
 

Methods in eneter.messaging.messagingsystems.threadpoolmessagingsystem that return IDuplexInputChannel
 IDuplexInputChannel ThreadPoolMessagingSystemFactory.createDuplexInputChannel(java.lang.String channelId)
           
 

Uses of IDuplexInputChannel in eneter.messaging.messagingsystems.udpmessagingsystem
 

Methods in eneter.messaging.messagingsystems.udpmessagingsystem that return IDuplexInputChannel
 IDuplexInputChannel UdpMessagingSystemFactory.createDuplexInputChannel(java.lang.String channelId)
          Creates the duplex input channel which can receive and send messages to the duplex output channel using UDP.
 

Uses of IDuplexInputChannel in eneter.messaging.messagingsystems.websocketmessagingsystem
 

Methods in eneter.messaging.messagingsystems.websocketmessagingsystem that return IDuplexInputChannel
 IDuplexInputChannel WebSocketMessagingSystemFactory.createDuplexInputChannel(java.lang.String channelId)
          Creates the duplex input channel receiving messages from the duplex output channel and sending back response messages by using WebSocket.