Package org.apache.beam.sdk.testing
Interface StreamingIT
Deprecated.
Category tag used to mark tests which execute in streaming mode. Example usage:
@Test
@Category(StreamingIT.class)
public void testStreamingPipeline() {
StreamingOptions options = ...;
options.setStreaming(true);
StreamingPipeline.main(...);
}
UsesUnboundedPCollections
. Beyond that, it is up to the runner and test configuration to decide whether to run in streaming mode.