com.ibm.streamsx.plumbing > com.ibm.streamsx.plumbing 1.0.0 > com.ibm.streamsx.plumbing.control > Java Native Functions
Create a boolean control variable named name. If shared is true then the control variable is intended for use by multiple operators,if false then the control variable is intended for use for a single operator. A control variable may be created by multiple operators, the first will create the MXBeanrepresenting the control variable, subsequent creates will just reference the exisitng MXBean.
Create a float64 control variable named name. If shared is true then the control variable is intended for use by multiple operators,if false then the control variable is intended for use for a single operator. A control variable may be created by multiple operators, the first will create the MXBeanrepresenting the control variable, subsequent creates will just reference the exisitng MXBean.
Get the value of name boolean control variable. Any operator invoking this function must call createBooleanControlVariable, typically in its logic state clause, before invoking this function.
Get the value of name float64 control variable. Any operator invoking this function must call createFloat64ControlVariable, typically in its logic state clause, before invoking this function.
Set the value of name boolean control variable to value. Any operator invoking this function must call createBooleanControlVariable, typically in its logic state clause, before invoking this function.
Set the value of name float64 control variable to value. Any operator invoking this function must call createFloat64ControlVariable, typically in its logic state clause, before invoking this function.