[][src]Macro stakker::at

macro_rules! at {
    ( $inst:expr, $($x:tt)+ ) => { ... };
}

At the given Instant, perform an actor call, forward call or inline code

The syntax of the calls is identical to call!, but with an Instant argument first. Returns a FixedTimerKey which can be used to delete the timer if necessary. See also after!.

This example is not tested
at!(instant, ...args-as-for-call-macro...);

Implemented using Core::timer_add, Actor::apply and Actor::apply_prep.