Method Pike.__Backend()->CallOut()->create()


Method create

Pike.__Backend.CallOut Pike.__Backend.CallOut(int|float seconds, mixed fun, mixed ... args)

Description

Start a new call out.

This is the low-level implementation of call_out().

call_out() is essentially implemented as:

array call_out(mixed fun, int|float seconds, mixed ... args)
    {
      return CallOut(seconds, fun, @args)->args;
    }
See also

call_out()