Class Pike.__Backend()->CallOut

Description

Represents a single call_out in the call_out list.

See also

call_out()


Variable args

protected array Pike.__Backend.CallOut.args

Description

The array containing the function and arguments.


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()