caproto.asyncio.server.Event¶
- class caproto.asyncio.server.Event(*, loop=None)[source]¶
Implement the
timeout
keyword to wait(), as in threading.Event.Methods
clear
()Reset the internal flag to false.
is_set
()Return True if and only if the internal flag is true.
set
()Set the internal flag to true.
wait
([timeout])Block until the internal flag is true.