com.ibm.streamsx.plumbing > com.ibm.streamsx.plumbing 1.0.0 > com.ibm.streamsx.plumbing.control > control.spl
Control variable change notifications. Issues a tuple for each attribute changed notification issued by a control variable.
public composite ControlVariableChange(output stream<MBeanNotificationBase> CVN) {
param expression<rstring> $name;
graph
stream<MBeanNotificationBase> CVN = ControlNotificationSource()
{
param
objectNames : getControlVariableObjectName($name);
filters : "jmx.attribute.change";
}
}
Get the object name in the Job Control Plane for a shared control variable.
public rstring getControlVariableObjectName(rstring name) {
return "com.ibm.streams.control:type=controlvariable,name=\""
+ name + "\"";
}