A Delegate that is called each time a Message is dispatched to allow the client to do any necessary transformations on the received message before it is delivered. The ConnectionFactory sets the provided delegate instance on each Connection instance that is created from this factory, each connection in turn passes the delegate along to each Session it creates which then passes that along to the Consumers it creates.

Namespace:  Apache.NMS
Assembly:  Apache.NMS (in Apache.NMS.dll)

Syntax

Visual Basic
Property ConsumerTransformer As ConsumerTransformerDelegate
	Get
	Set
C#
ConsumerTransformerDelegate ConsumerTransformer { get; set; }
Visual C++
property ConsumerTransformerDelegate^ ConsumerTransformer {
	ConsumerTransformerDelegate^ get ();
	void set (ConsumerTransformerDelegate^ value);
}
JavaScript
function get_consumerTransformer();
function set_consumerTransformer(value);

See Also