matchSource method

LogicalChannel matchSource(
  1. String value
)
inherited

Matches any Tweet generated by the given source application.

The value must be either the name of the application or the application’s URL. Cannot be used alone.

Note: As a Twitter app developer, Tweets created programmatically by your application will have the source of your application Name and Website URL set in your app settings.

Type

Availability

  • Essential

Implementation

LogicalChannel matchSource(final String value) => _buffer.appendOperator(
      _conjunctionRequiredOperation.createSource(value),
    );