TimeArrived

Description:              Indicates whether a given time has occurred.

Returns:                    Boolean

Usage:                       Steady State

Format:                      TimeArrived(TriggerTime)

Parameters:             TriggerTime     { timestamp }  { required }  { no default: }

                                                A UTC timestamp, specifying when the TimeArrived function will become true..

Example:

 

  If TimeArrived(Timestamp);

  [

     ...

  ]

Comments:

This statement will trigger when the current time reaches the specified timestamp (Timestamp must be changed or invalidated in the corresponding script, otherwise the statement will trigger repeatedly). This example is exactly equivalent to the hypothetical statement:

   If CurrentTime(1) >= Timestamp;

Except that CurrentTime may not be used in steady state.

 

See Also:

CurrentTime