eneter.messaging.dataprocessing.serializing
Interface GetSerializerCallback


public interface GetSerializerCallback

Callback used by communication components to get serializer for a specific client connection. If the callback is specified then the service communication component calls it whenever it needs to serialize/deserialize the communication with the client. The purpose of this callback is to allow to use for each client a different serializer. E.g. if the serialized message shall be encrypted by a client specific password or a key.


Method Summary
 ISerializer invoke(java.lang.String responseReceiverId)
          Returns the serializer which shall be used for the specified response receiver id.
 

Method Detail

invoke

ISerializer invoke(java.lang.String responseReceiverId)
Returns the serializer which shall be used for the specified response receiver id.

Parameters:
responseReceiverId - response receiver id for which the implementation shall return the serializer.
Returns: