matchContext method

LogicalChannel matchContext(
  1. String value
)
inherited

Matches Tweets with a specific domain id and/or domain id, entity id pair where * represents a wildcard.

To learn more about this operator, please visit page on Tweet annotations.

You can only pass a single domain/entity per this operator.

Parameters

  • value: Context value to be matched.

Type

Availability

  • Essential

Implementation

LogicalChannel matchContext(final String value) => _buffer.appendOperator(
      _standaloneOperation.createContext(value),
    );