undelay

Removes a void delegate() delegate from being called at any point later by nulling it.

Updates the nextScheduledTimestamp UNIX timestamp so that the main loop knows when to process the array of delegates.

  1. void undelay(IRCPlugin plugin, Fiber fiber)
  2. void undelay(IRCPlugin plugin)
  3. void undelay(IRCPlugin plugin, void delegate() dg)
    void
    undelay
    (,
    void delegate
    ()
    dg
    )

Parameters

plugin IRCPlugin

The current IRCPlugin.

dg void delegate
()

Delegate to exempt from being executed at a later point in time.

See Also