Sidebar

Can I stop a source or destination node without stopping the channel?

0 votes
617 views
asked Jun 23, 2015 by brandon-w-8204 (33,170 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.

 

answered Jun 23, 2015 by brandon-w-8204 (33,170 points)
selected Aug 19, 2016 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');
 
answered Aug 19, 2016 by gary-t-8719 (14,860 points)
...