qie.stopChannel
Signature: qie.stopChannel()
Returns: void
Stop the channel.
Parameters
None
Example
/* If more than 500 messages are waiting to be sent...stop the channel something must be wrong. */
if (qie.getOutboundCount() > 500) {
qie.stopChannel();
}