Type Alias PollStep

PollStep: Message<"moddef.v1.PollStep"> & {
    intervalMs: number;
    pointId: string;
    timeoutMs: number;
    until?: Condition;
}

§11.7 Repeatedly read a point until until holds. interval_ms is the pause between reads; timeout_ms bounds the whole step (MDE-level error at runtime on expiry).

Type declaration

  • intervalMs: number

    from field: uint32 interval_ms = 3;

  • pointId: string

    from field: string point_id = 1;

  • timeoutMs: number

    from field: uint32 timeout_ms = 4;

  • Optionaluntil?: Condition

    from field: moddef.v1.Condition until = 2;

from message moddef.v1.PollStep