Interface AnnotationStatic

Static utilities related to annotations.

Hierarchy

  • AnnotationStatic

Properties

fromEncoded: ((JsonObject, channelOptions?) => Promise<Annotation>)

Type declaration

    • (JsonObject, channelOptions?): Promise<Annotation>
    • Decodes a deserialized Annotation-like object. Any residual transforms that cannot be decoded or decrypted will be in the encoding property. Intended for users receiving messages from a source other than a REST or Realtime channel (for example a queue) to avoid having to parse the encoding string.

      Parameters

      • JsonObject: any

        The deserialized Annotation-like object to decode and decrypt.

      • Optional channelOptions: ChannelOptions

        A ChannelOptions object containing the current channel options.

      Returns Promise<Annotation>

fromEncodedArray: ((JsonArray, channelOptions?) => Promise<Annotation[]>)

Type declaration

    • (JsonArray, channelOptions?): Promise<Annotation[]>
    • Decodes an array of deserialized Annotation-like objects. Any residual transforms that cannot be decoded or decrypted will be in the encoding property. Intended for users receiving messages from a source other than a REST or Realtime channel (for example a queue) to avoid having to parse the encoding string.

      Parameters

      • JsonArray: any[]

        An array of deserialized Annotation-like objects to decode and decrypt.

      • Optional channelOptions: ChannelOptions

        A ChannelOptions object containing the current channel options.

      Returns Promise<Annotation[]>

Generated using TypeDoc