test-bed-time-service
Version:
A time service for the test-bed, producing messages with real time, fictive time and scenario duration.
17 lines (16 loc) • 546 B
TypeScript
export interface ITimingControlMessage {
/** The date and time the distribution message was sent as the number of milliseconds from the unix epoch, 1 January 1970 00:00:00.000 UTC. */
trialTime?: number;
/** The Trialtime speed factor */
trialTimeSpeed?: number;
/** The type of timing control command */
command: TimingControlCommand;
}
export declare enum TimingControlCommand {
Init = "Init",
Start = "Start",
Pause = "Pause",
Update = "Update",
Stop = "Stop",
Reset = "Reset"
}