| Package | Description |
|---|---|
| org.apache.flink.streaming.api.windowing.helper |
| Modifier and Type | Method and Description |
|---|---|
static <DATA> Time<DATA> |
Time.of(long length,
Timestamp<DATA> timestamp)
Creates a helper representing a time trigger which triggers every given
length (slide size) or a time eviction which evicts all elements older
than length (window size) using a user defined timestamp extractor.
|
static <DATA> Time<DATA> |
Time.of(long length,
Timestamp<DATA> timestamp,
long startTime)
Creates a helper representing a time trigger which triggers every given
length (slide size) or a time eviction which evicts all elements older
than length (window size) using a user defined timestamp extractor.
|
static <DATA> Time<DATA> |
Time.of(long length,
TimeUnit timeUnit)
Creates a helper representing a time trigger which triggers every given
length (slide size) or a time eviction which evicts all elements older
than length (window size) using System time.
|
Copyright © 2014–2015 The Apache Software Foundation. All rights reserved.