Transformer Pipeline Module API Reference
6.2.11.309924
|
Functions | |
halt.ishalted (var symname) | |
Check whether a symbol is halted or not. More... | |
halt.halt (var symname) | |
Set a symbol to be halted. More... | |
halt.resume (var symname) | |
Remove the halted state of a symbol. More... | |
This package supports the concept of a simple latch for halting updates to a symbol. It is up to the caller to stop processing the update should halt.ishalted() return 1
halt.halt | ( | var | symname | ) |
Set a symbol to be halted.
symname | - Symbolname to set halted status of |
This function uses the following db keys on the symbol:
IsHalted
halt.ishalted | ( | var | symname | ) |
Check whether a symbol is halted or not.
symname | - Symbolname to check |
0 | - Symbol isn't halted |
1 | - Symbol is halted |
This function uses the following db keys on the symbol:
IsHalted
halt.resume | ( | var | symname | ) |
Remove the halted state of a symbol.
symname | - Symbolname to clear halted status of |
This function uses the following db keys on the symbol:
IsHalted