whereIdIn method

Adds an ID filter to the subscription.

Only entities with the given IDs match the subscription.

If called multiple times, the IDs add up.

Implementation

StateSubscriptionRequest<M> whereIdIn(Iterable<Object> ids) {
    _ids.addAll(ids);
    return this;
}