Skip to content

qie.resumeChannel

Signature: qie.resumeChannel()

Returns: void

Resume the channel execution.

Parameters

None

Example

/* Resume inbound processing if the outbound queue seems to be processing fine again. */
if (qie.getOutboundCount() > 500) {
   qie.pauseChannel();
} else {
   qie.resumeChannel();
}