Hussey123
Hussey123

Reputation: 479

What is a channel exit in IBM websphere MQ?

What is a channel exit in IBM MQ? On my research I found three types of channel exits.

Can someone explain this?

Upvotes: 1

Views: 1288

Answers (1)

covener
covener

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.

https://www.ibm.com/support/knowledgecenter/en/SSFKSJ_7.1.0/com.ibm.mq.javadoc.doc/WMQJavaClasses/com/ibm/mq/exits/WMQSendExit.html

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

Related Questions