| Package | Description |
|---|---|
| org.apache.flink.streaming.api.datastream.temporal | |
| org.apache.flink.streaming.api.windowing.helper |
| Modifier and Type | Method and Description |
|---|---|
OP |
TemporalOperator.onWindow(long length,
Timestamp<I1> timeStamp1,
Timestamp<I2> timeStamp2)
Continues a temporal transformation.
Defines the window size on which the two DataStreams will be transformed.To define sliding windows call TemporalWindow.every(long, java.util.concurrent.TimeUnit)
on the resulting operator. |
OP |
TemporalOperator.onWindow(long length,
Timestamp<I1> timeStamp1,
Timestamp<I2> timeStamp2)
Continues a temporal transformation.
Defines the window size on which the two DataStreams will be transformed.To define sliding windows call TemporalWindow.every(long, java.util.concurrent.TimeUnit)
on the resulting operator. |
OP |
TemporalOperator.onWindow(long length,
Timestamp<I1> timeStamp1,
Timestamp<I2> timeStamp2,
long startTime)
Continues a temporal transformation.
Defines the window size on which the two DataStreams will be transformed.To define sliding windows call TemporalWindow.every(long, java.util.concurrent.TimeUnit)
on the resulting operator. |
OP |
TemporalOperator.onWindow(long length,
Timestamp<I1> timeStamp1,
Timestamp<I2> timeStamp2,
long startTime)
Continues a temporal transformation.
Defines the window size on which the two DataStreams will be transformed.To define sliding windows call TemporalWindow.every(long, java.util.concurrent.TimeUnit)
on the resulting operator. |
| Modifier and Type | Class and Description |
|---|---|
class |
SystemTimestamp<T>
Timestamp implementation to be used when system time is needed to
determine windows |
| 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.
|
| Constructor and Description |
|---|
TimestampWrapper(Timestamp<T> timeStamp,
long startTime) |
Copyright © 2014–2015 The Apache Software Foundation. All rights reserved.