@SafeVarargs public final void assertHasOnlyGlobalAndFinishedSetsAndPaneInfoFor(W... expectedWindows) { assertHasOnlyGlobalAndAllowedTags( ImmutableSet.copyOf(expectedWindows), ImmutableSet.<StateTag<?>>of( TriggerRunner.FINISHED_BITS_TAG, PaneInfoTracker.PANE_INFO_TAG, WatermarkHold.PANE_HOLD_TAG)); }
public final void assertHasOnlyGlobalState() { assertHasOnlyGlobalAndAllowedTags( Collections.<W>emptySet(), Collections.<StateTag<?>>emptySet()); }
@SafeVarargs public final void assertHasOnlyGlobalAndFinishedSetsFor(W... expectedWindows) { assertHasOnlyGlobalAndAllowedTags( ImmutableSet.copyOf(expectedWindows), ImmutableSet.<StateTag<?>>of(TriggerRunner.FINISHED_BITS_TAG)); }