This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Start as many processes as wanted; then, make Channel objects - when a channel value is changed, | |
all channels with the same name receive it. | |
linguijarro:~ % python -i test_redis_nanomsg.py | |
>>> c = Channel("s1v.position") | |
>>> c.value() | |
NotInitialized | |
>>> c.set_value(14) | |
>>> c.value() |