Reputation: 479
What is a channel exit in IBM MQ? On my research I found three types of channel exits.
WMQSendExit
WMQReceiveExit
WMQSecurityExit
Can someone explain this?
Upvotes: 1
Views: 1288
Reputation: 17872
An "exit" or "exit program" in IBM-speak is the same thing that non-IBM software might call a "callback" or a "listener". It is a way to hook in your custom code into an event generated by the software.
The send exit interface allows you to examine, and possibly alter, the data sent to the queue manager by the WebSphere MQ Client for Java. Note: This interface does not apply when connecting directly to WebSphere MQ in bindings mode.
To provide your own send exit, define a class that implements this interface.
Upvotes: 2