Skip to content

qie.stopSourceNode

Signature: qie.stopSourceNode()

Returns: void

Stop source node endpoint.

Parameters

None

Example

if (qie.getOutboundCount() > 50) {
   qie.stopSourceNode(); // Let it catch up
} else {
   if (!qie.isSourceNodeRunning()) {
      qie.startSourceNode();
   }
}