spectator
Functions
pub fn tag(pid: Pid, name: String) -> Pid
Tag a process given by PID with a name for easier identification in the spectator UI.
You must call start
before calling this function.
pub fn tag_result(
result: Result(Subject(a), b),
name: String,
) -> Result(Subject(a), b)
Tag a process given by subject result with a name for easier identification in the spectator UI.
You must call start
before calling this function.
pub fn tag_subject(
subject sub: Subject(a),
name name: String,
) -> Subject(a)
Tag a process given by subject with a name for easier identification in the spectator UI.
You must call start
before calling this function.