qie.pauseChannel
Signature: qie.pauseChannel()
Returns: void
Pause the channel execution.
Parameters
None
Example
/* Pause inbound processing if the outbound queue isn't processing fast enough. */
if (qie.getOutboundCount() > 500) {
qie.pauseChannel();
} else {
qie.resumeChannel();
}