public enum PunctuationType extends java.lang.Enum<PunctuationType>
ProcessorContext.schedule(long, PunctuationType, Punctuator)
schedule}:
TimestampExtractor
in use.
NOTE: Only advanced if messages arriveStreamsConfig.POLL_MS_CONFIG
)
independent of whether new messages arrive. NOTE: This is best effort only as its granularity is limited
by how long an iteration of the processing loop takes to completeEnum Constant | Description |
---|---|
STREAM_TIME |
|
WALL_CLOCK_TIME |
Modifier and Type | Method | Description |
---|---|---|
static PunctuationType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static PunctuationType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PunctuationType STREAM_TIME
public static final PunctuationType WALL_CLOCK_TIME
public static PunctuationType[] values()
for (PunctuationType c : PunctuationType.values()) System.out.println(c);
public static PunctuationType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null