| Package | Description |
|---|---|
| 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.
|
| Constructor and Description |
|---|
AndroidUsbCableMessagingFactory(int adbHostPort,
IProtocolFormatter protocolFormatter)
Constructs the messaging which communicates with Android via the USB cable.
|
| Modifier and Type | Class and Description |
|---|---|
class |
EasyProtocolFormatter
Simple and very fast encoding/decoding for TCP, WebSocket and multicast/broadcast UDP.
|
class |
EneterProtocolFormatter
Default Eneter encoding/decoding.
|
| Constructor and Description |
|---|
HttpMessagingSystemFactory(int pollingFrequency,
int inactivityTimeout,
IProtocolFormatter protocolFormatter)
Constructs the factory that will create channel with specified settings.
|
| Constructor and Description |
|---|
SynchronousMessagingSystemFactory(IProtocolFormatter protocolFormatter)
Constructs the factory representing the messaging system.
|
| Constructor and Description |
|---|
TcpMessagingSystemFactory(IProtocolFormatter protocolFormatter)
Constructs the TCP messaging factory.
|
| Constructor and Description |
|---|
ThreadMessagingSystemFactory(IProtocolFormatter protocolFormatter)
Constructs thread based messaging factory.
|
| Constructor and Description |
|---|
ThreadPoolMessagingSystemFactory(IProtocolFormatter protocolFormatter)
Constructs the factory.
|
| Constructor and Description |
|---|
UdpMessagingSystemFactory(IProtocolFormatter protocolFromatter)
Constructs the UDP messaging factory.
|
| Constructor and Description |
|---|
WebSocketMessagingSystemFactory(IProtocolFormatter protocolFormatter)
Constructs the websocket messaging factory.
|