Class GlobalWindow
- java.lang.Object
-
- org.apache.flink.streaming.api.windowing.windows.Window
-
- org.apache.flink.streaming.api.windowing.windows.GlobalWindow
-
@PublicEvolving public class GlobalWindow extends Window
The default window into which all data is placed (viaGlobalWindows
).
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
GlobalWindow.Serializer
ATypeSerializer
forGlobalWindow
.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
static GlobalWindow
get()
int
hashCode()
long
maxTimestamp()
Gets the largest timestamp that still belongs to this window.String
toString()
-
-
-
Method Detail
-
get
public static GlobalWindow get()
-
maxTimestamp
public long maxTimestamp()
Description copied from class:Window
Gets the largest timestamp that still belongs to this window.- Specified by:
maxTimestamp
in classWindow
- Returns:
- The largest timestamp that still belongs to this window.
-
-