macro_rules! call {
($($tokens:tt)*) => { ... };
}
Expand description
Sends a method call to be executed by the actor, and returns a future that can be awaited to get back the result.
ⓘ
call!(addr.method(arg1, arg2))
The same constraints as for the send!(...)
macro apply.