1.2k questions

1.4k answers

361 comments

339 users

Categories

Sidebar
0 votes
900 views
by brandon-w-8204 (34.1k points)
I have a channel that i want to either stop 1 of 2 destination nodes or stop the source and let the messages in queue continue to process. If i stop the channel it stops everything. Do I have a way to stop just one source or destination node?

2 Answers

+2 votes
 
Best answer

Starting with 2.0.41 release, we have enhanced QIE to allow you to start and stop source and destination nodes individually.

  1. To enable nodes right click the node and choose "Enable Node" to start it.
  2. To stop nodes right click the node and choose "Disable" to stop it.

 

by brandon-w-8204 (34.1k points)
selected by gary-t-8719
0 votes

In addition to the right click menu on the node itself, the user can start or stop either the Source or Destiniation nodes from within any scripting window with the QIE channel functions.

qie.isSourceNodeRunning();
qie.stopSourceNode();
qie.startSourceNode();
 
qie.isDestinationNodeRunning('endpointId');
qie.stopDestinationNode('endpointId');
qie.startDestinationNode('endpointId');
 
by gary-t-8719 (15.1k points)
...