matchConversation method

LogicalChannel matchConversation(
  1. String tweetId
)
inherited

Matches Tweets that share a common conversation ID. A conversation ID is set to the Tweet ID of a Tweet that started a conversation.

As Replies to a Tweet are posted, even Replies to Replies, the conversation_id is added to its JSON payload.

You can only pass a single conversation ID per this operator.

Parameters

  • tweetId: Tweet ID to be matched.

Type

Availability

  • Essential

Implementation

LogicalChannel matchConversation(final String tweetId) =>
    _buffer.appendOperator(
      _standaloneOperation.createConversation(tweetId),
    );