Expand description
Tokio-based channel senders for live trading runtime.
Stores channel senders for the current runtime thread.
Data and execution event setters accept either a runtime-bound EventSender or a plain
Tokio sender. Plain senders carry no callback context. Getters and clones preserve the
installed mode and owner; moving a runtime-bound sender to another thread makes its sends
independent ingress.
Functionsยง
- get_
data_ event_ sender - Gets the thread-local data event sender.
- get_
exec_ event_ sender - Gets the thread-local execution event sender.
- get_
system_ command_ sender - Gets the thread-local system command sender.
- get_
system_ event_ sender - Gets the thread-local system event sender.
- replace_
data_ event_ sender - Replaces the data event sender for the current thread.
- replace_
exec_ event_ sender - Replaces the execution event sender for the current thread.
- replace_
system_ command_ sender - Replaces the system command sender for the current thread.
- replace_
system_ event_ sender - Replaces the system event sender for the current thread.
- set_
data_ event_ sender - Sets the thread-local data event sender.
- set_
exec_ event_ sender - Sets the thread-local execution event sender.
- set_
system_ command_ sender - Sets the thread-local system command sender.
- set_
system_ event_ sender - Sets the thread-local system event sender.
- try_
get_ data_ event_ sender - Attempts to get the thread-local data event sender without panicking.
- try_
get_ exec_ event_ sender - Attempts to get the thread-local execution event sender without panicking.
- try_
get_ system_ command_ sender - Attempts to get the thread-local system command sender without panicking.
- try_
get_ system_ event_ sender - Attempts to get the thread-local system event sender without panicking.