pamoja for TypeScript - v0.1.17
    Preparing search index...

    Variable QosConst

    Qos: { AtLeastOnce: Qos; AtMostOnce: Qos; ExactlyOnce: Qos }

    MQTT delivery guarantee, mirroring the protocol's quality-of-service levels.

    Provided as a runtime object plus a matching string-union type so it works as both a value (Qos.AtLeastOnce) and a type annotation.

    Type Declaration

    • ReadonlyAtLeastOnce: Qos

      Delivered at least once and acknowledged.

    • ReadonlyAtMostOnce: Qos

      Fire and forget; the broker does not acknowledge delivery.

    • ReadonlyExactlyOnce: Qos

      Delivered exactly once via a four-step handshake.