SMIMessageStreamingToken

Objective-C

@protocol SMIMessageStreamingToken <SMIStreamingToken>

Swift

protocol MessageStreamingToken : StreamingToken

Represents an individual streamed token which contains part of a full message.

  • The identifier which will correspond to the final transcripted entry.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) NSString *_Nonnull targetMessageIdentifier;

    Swift

    var targetMessageIdentifier: String { get }
  • The content of this streaming token.

    Declaration

    Objective-C

    @property (nonatomic, strong, readonly) id<SMIEntryFormat> _Nonnull token;

    Swift

    var token: any EntryFormat { get }