Interface RealtimeAnnotations

Functionality for annotating messages with small pieces of data, such as emoji reactions, that the server will roll up into the message as a summary.

Hierarchy

  • RealtimeAnnotations

Methods

  • Publish an annotation removal request for a message, to remove it from the summary summaries. The semantics of the delete (and what fields are required) are different for each annotation type; see annotation types documentation for more details.

    Parameters

    • message: Message

      The message which has an annotation that you want to delete.

    • annotation: OutboundAnnotation

      The annotation deletion request. (Must include at least the type, other required fields depend on the type).

    Returns Promise<void>

  • Publish an annotation removal request for a message, to remove it from the summary summaries. The semantics of the delete (and what fields are required) are different for each annotation type; see annotation types documentation for more details.

    Parameters

    • messageSerial: string

      The serial field of the message which has an annotation that you want to delete.

    • annotation: OutboundAnnotation

      The annotation deletion request. (Must include at least the type, other required fields depend on the type).

    Returns Promise<void>

  • Publish a new annotation for a message.

    Parameters

    • message: Message

      The message to annotate.

    • annotation: OutboundAnnotation

      The annotation to publish. (Must include at least the type; other required fields depend on the annotation type).

    Returns Promise<void>

  • Publish a new annotation for a message (alternative form where you only have the serial of the message, not a complete Message object)

    Parameters

    • messageSerial: string

      The serial field of the message to annotate.

    • annotation: OutboundAnnotation

      The annotation to publish. (Must include at least the type; other required fields depend on the annotation type).

    Returns Promise<void>

  • Registers a listener that is called each time an Annotation matching a given type is received on the channel. Note that if you want to receive individual realtime annotations (instead of just the rolled-up summaries), you will need to request the annotation_subscribe ChannelMode in ChannelOptions, since they are not delivered by default. In general, most clients will not bother with subscribing to individual annotations, and will instead just look at the summary updates.

    Parameters

    • type: string | string[]

      A specific type string or an array of them to register the listener for.

    • Optional listener: messageCallback<PresenceMessage>

      An event listener function.

    Returns Promise<void>

    A promise which resolves upon success of the channel attach() operation and rejects with an ErrorInfo object upon its failure.

  • Registers a listener that is called each time an Annotation is received on the channel. Note that if you want to receive individual realtime annotations (instead of just the rolled-up summaries), you will need to request the annotation_subscribe ChannelMode in ChannelOptions, since they are not delivered by default. In general, most clients will not bother with subscribing to individual annotations, and will instead just look at the summary updates.

    Parameters

    Returns Promise<void>

    A promise which resolves upon success of the channel attach() operation and rejects with an ErrorInfo object upon its failure.

  • Deregisters a specific listener that is registered to receive Annotation on the channel for a given type.

    Parameters

    • type: string | string[]

      A specific annotation type (or array of types) to deregister the listener for.

    • listener: messageCallback<Annotation>

      An event listener function.

    Returns void

  • Deregisters any listener that is registered to receive Annotation on the channel for a specific type.

    Parameters

    • type: string | string[]

      A specific annotation type (or array of types) to deregister the listeners for.

    Returns void

  • Deregisters a specific listener that is registered to receive Annotation on the channel.

    Parameters

    Returns void

  • Deregisters all listeners currently receiving Annotation for the channel.

    Returns void

Generated using TypeDoc