Package | Description |
---|---|
eneter.messaging.dataprocessing.serializing |
Message serializers.
|
eneter.messaging.endpoints.rpc |
Remote Procedure Calls (RPC).
|
eneter.messaging.endpoints.typedmessages |
Sending and receiving typed messages.
|
eneter.messaging.messagingsystems.composites.messagebus |
Extension for communication via the message bus.
|
eneter.messaging.messagingsystems.composites.monitoredmessagingcomposit |
Extension providing monitoring the connection.
|
eneter.messaging.nodes.broker |
Publish-subscribe scenarios.
|
eneter.messaging.nodes.channelwrapper |
Reducing communication via multiple channels into one channel.
|
Modifier and Type | Class and Description |
---|---|
class |
AesSerializer
Serializer using AES (Advanced Encryption Standard).
|
class |
GZipSerializer
Serializer compressing and decompressing data.
|
class |
JavaBinarySerializer
Serializes data into Java specific byte sequence.
|
class |
RsaDigitalSignatureSerializer
Serializer digitaly signing data.
|
class |
RsaSerializer
Serializer using RSA.
|
class |
XmlStringSerializer
Serializes data to XML which is compatible with .NET.
|
Modifier and Type | Method and Description |
---|---|
ISerializer |
GetSerializerCallback.invoke(java.lang.String responseReceiverId)
Returns the serializer which shall be used for the specified response receiver id.
|
Constructor and Description |
---|
AesSerializer(java.security.Key key,
javax.crypto.spec.IvParameterSpec iv,
ISerializer underlyingSerializer) |
AesSerializer(java.lang.String password,
byte[] salt,
ISerializer underlyingSerializer) |
AesSerializer(java.lang.String password,
ISerializer underlyingSerializer)
Constructs the serializer.
|
GZipSerializer(ISerializer underlyingSerializer)
Constructs the serializer with the given underlying serializer.
|
RsaDigitalSignatureSerializer(java.security.cert.X509Certificate signerPublicCertificate,
java.security.interfaces.RSAPrivateKey signerPrivateKey,
IFunction1<java.lang.Boolean,java.security.cert.X509Certificate> verifySignerCertificate,
ISerializer underlyingSerializer)
Constructs serializer with custom parameters.
|
RsaSerializer(java.security.interfaces.RSAPublicKey publicKey,
java.security.interfaces.RSAPrivateKey privateKey,
int aesBitSize,
ISerializer underlyingSerializer)
Constructs the RSA serializer with custom parameters.
|
Modifier and Type | Class and Description |
---|---|
class |
RpcCustomSerializer
Serializer optimized for RPC.
|
Modifier and Type | Method and Description |
---|---|
ISerializer |
RpcFactory.getSerializer()
Returns serializer used to serialize/deserialize messages between client and service.
|
Modifier and Type | Method and Description |
---|---|
RpcFactory |
RpcFactory.setSerializer(ISerializer serializer)
Sets serializer to be used to serialize/deserialize messages between client and service.
|
Constructor and Description |
---|
RpcCustomSerializer(ISerializer serializer)
Constructs the serializer.
|
RpcFactory(ISerializer serializer)
Constructs RpcFactory with specified serializer.
|
Modifier and Type | Method and Description |
---|---|
ISerializer |
MultiTypedMessagesFactory.getSerializer()
Gets serializer for messages.
|
ISerializer |
DuplexTypedMessagesFactory.getSerializer()
Gets serializer for messages.
|
Modifier and Type | Method and Description |
---|---|
MultiTypedMessagesFactory |
MultiTypedMessagesFactory.setSerializer(ISerializer serializer)
Sets serializer for messages.
|
DuplexTypedMessagesFactory |
DuplexTypedMessagesFactory.setSerializer(ISerializer serializer)
Sets serializer for messages.
|
Constructor and Description |
---|
DuplexTypedMessagesFactory(ISerializer serializer)
Constructs the factory with specified serializer.
|
MultiTypedMessagesFactory(ISerializer serializer)
Constructs the factory.
|
Constructor and Description |
---|
MessageBusFactory(ISerializer serializer)
Constructs the factory.
|
MessageBusMessagingFactory(java.lang.String serviceConnctingAddress,
java.lang.String clientConnectingAddress,
IMessagingSystemFactory serviceUnderlyingMessaging,
IMessagingSystemFactory clientUnderlyingMessaging,
ISerializer serializer) |
MessageBusMessagingFactory(java.lang.String serviceConnctingAddress,
java.lang.String clientConnectingAddress,
IMessagingSystemFactory underlyingMessaging,
ISerializer serializer)
Constructs the factory.
|
Modifier and Type | Method and Description |
---|---|
ISerializer |
MonitoredMessagingFactory.getSerializer()
Gets the serializer which is used to serialize/deserialize MonitorChannelMessage.
|
Modifier and Type | Method and Description |
---|---|
MonitoredMessagingFactory |
MonitoredMessagingFactory.setSerializer(ISerializer pingSerializer)
Sets the serializer which shall be used to serialize MonitorChannelMessage.
|
Modifier and Type | Method and Description |
---|---|
ISerializer |
DuplexBrokerFactory.getSerializer()
Returns the serializer which is used to serialize/deserialize
BrokerMessate . |
Modifier and Type | Method and Description |
---|---|
DuplexBrokerFactory |
DuplexBrokerFactory.setSerializer(ISerializer serializer)
Sets the serializer to serialize/deserialize
BrokerMessage . |
Constructor and Description |
---|
DuplexBrokerFactory(ISerializer serializer)
Constructs the broker factory with specified serializer.
|
Modifier and Type | Method and Description |
---|---|
ISerializer |
ChannelWrapperFactory.getSerializer()
Gets serializer which is used to serialize/deserialize DataWrapper.
|
Modifier and Type | Method and Description |
---|---|
ChannelWrapperFactory |
ChannelWrapperFactory.setSerializer(ISerializer serializer)
Sets serializer which shall be used to serialize/deserialize DataWrapper.
|
static WrappedData |
DataWrapper.unwrap(java.lang.Object wrappedData,
ISerializer serializer)
Takes the serialized WrappedData and deserializes it with the given serializer.
|
static java.lang.Object |
DataWrapper.wrap(java.lang.Object addedData,
java.lang.Object originalData,
ISerializer serializer)
Adds the data to already serialized data.
|
Constructor and Description |
---|
ChannelWrapperFactory(ISerializer serializer)
Constructs the factory.
|