crew_class_relay {crew} | R Documentation |
R6
relay class.R6
class for relay configuration.
See crew_relay()
.
condition
Main condition variable.
from
Condition variable to relay from.
to
Condition variable to relay to.
validate()
Validate the object.
crew_class_relay$validate()
NULL
(invisibly).
start()
Start the relay object.
crew_class_relay$start()
NULL
(invisibly).
terminate()
Terminate the relay object.
crew_class_relay$terminate()
NULL
(invisibly).
set_from()
Set the condition variable to relay from.
crew_class_relay$set_from(from)
from
Condition variable to relay from.
NULL
(invisibly).
set_to()
Set the condition variable to relay to.
crew_class_relay$set_to(to)
to
Condition variable to relay to.
NULL
(invisibly).
wait()
Wait until an unobserved task resolves or the timeout is reached.
crew_class_relay$wait(seconds_timeout = 1000)
seconds_timeout
Positive numeric of length 1, Number of seconds to wait before timing out.
NULL
(invisibly).
Other relay:
crew_relay()
crew_relay()