Uses of Interface
eneter.messaging.messagingsystems.connectionprotocols.IProtocolFormatter

Packages that use IProtocolFormatter
eneter.messaging.messagingsystems.androidusbcablemessagingsystem Communication with Android via the USB cable. 
eneter.messaging.messagingsystems.connectionprotocols Encoding/decoding the communication between output and input channels. 
eneter.messaging.messagingsystems.httpmessagingsystem Communication via HTTP. 
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 IProtocolFormatter in eneter.messaging.messagingsystems.androidusbcablemessagingsystem
 

Constructors in eneter.messaging.messagingsystems.androidusbcablemessagingsystem with parameters of type IProtocolFormatter
AndroidUsbCableMessagingFactory(int adbHostPort, IProtocolFormatter protocolFormatter)
          Constructs the messaging which communicates with Android via the USB cable.
 

Uses of IProtocolFormatter in eneter.messaging.messagingsystems.connectionprotocols
 

Classes in eneter.messaging.messagingsystems.connectionprotocols that implement IProtocolFormatter
 class EasyProtocolFormatter
          Simple and very fast encoding/decoding for TCP, WebSocket and multicast/broadcast UDP.
 class EneterProtocolFormatter
          Default Eneter encoding/decoding.
 

Uses of IProtocolFormatter in eneter.messaging.messagingsystems.httpmessagingsystem
 

Constructors in eneter.messaging.messagingsystems.httpmessagingsystem with parameters of type IProtocolFormatter
HttpMessagingSystemFactory(int pollingFrequency, int inactivityTimeout, IProtocolFormatter protocolFormatter)
          Constructs the factory that will create channel with specified settings.
 

Uses of IProtocolFormatter in eneter.messaging.messagingsystems.synchronousmessagingsystem
 

Constructors in eneter.messaging.messagingsystems.synchronousmessagingsystem with parameters of type IProtocolFormatter
SynchronousMessagingSystemFactory(IProtocolFormatter protocolFormatter)
          Constructs the factory representing the messaging system.
 

Uses of IProtocolFormatter in eneter.messaging.messagingsystems.tcpmessagingsystem
 

Constructors in eneter.messaging.messagingsystems.tcpmessagingsystem with parameters of type IProtocolFormatter
TcpMessagingSystemFactory(IProtocolFormatter protocolFormatter)
          Constructs the TCP messaging factory.
 

Uses of IProtocolFormatter in eneter.messaging.messagingsystems.threadmessagingsystem
 

Constructors in eneter.messaging.messagingsystems.threadmessagingsystem with parameters of type IProtocolFormatter
ThreadMessagingSystemFactory(IProtocolFormatter protocolFormatter)
          Constructs thread based messaging factory.
 

Uses of IProtocolFormatter in eneter.messaging.messagingsystems.threadpoolmessagingsystem
 

Constructors in eneter.messaging.messagingsystems.threadpoolmessagingsystem with parameters of type IProtocolFormatter
ThreadPoolMessagingSystemFactory(IProtocolFormatter protocolFormatter)
          Constructs the factory.
 

Uses of IProtocolFormatter in eneter.messaging.messagingsystems.udpmessagingsystem
 

Constructors in eneter.messaging.messagingsystems.udpmessagingsystem with parameters of type IProtocolFormatter
UdpMessagingSystemFactory(IProtocolFormatter protocolFromatter)
          Constructs the UDP messaging factory.
 

Uses of IProtocolFormatter in eneter.messaging.messagingsystems.websocketmessagingsystem
 

Constructors in eneter.messaging.messagingsystems.websocketmessagingsystem with parameters of type IProtocolFormatter
WebSocketMessagingSystemFactory(IProtocolFormatter protocolFormatter)
          Constructs the websocket messaging factory.