matchTweetFrom method

LogicalChannel matchTweetFrom(
  1. String user
)
inherited

Matches any Tweet from a specific user.

The value can be either the username (excluding the @ character) or the user’s numeric user ID.

You can only pass a single username/ID.

Parameters

  • user: Username or user id to be matched.

Type

Availability

  • Essential

Implementation

LogicalChannel matchTweetFrom(final String user) => _buffer.appendOperator(
      _standaloneOperation.createTweetFrom(user),
    );