[][src]Macro act_zero::call

macro_rules! call {
    ($($tokens:tt)*) => { ... };
}

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.