public class FlowMonitorState
extends java.lang.Object
| Modifier and Type | Class and Description |
|---|---|
static class |
FlowMonitorState.Failed
Stream failed
|
static class |
FlowMonitorState.Failed$ |
static class |
FlowMonitorState.Finished$
Stream completed successfully
|
static class |
FlowMonitorState.Initialized$
Stream was created, but no events have passed through it
|
static class |
FlowMonitorState.Received<U>
Stream processed a message
|
static class |
FlowMonitorState.Received$ |
static interface |
FlowMonitorState.StreamState<U> |
| Constructor and Description |
|---|
FlowMonitorState() |
| Modifier and Type | Method and Description |
|---|---|
static <U> FlowMonitorState.StreamState<U> |
failed(java.lang.Throwable cause)
Java API
|
static <U> FlowMonitorState.Finished$ |
finished()
Java API
|
static <U> FlowMonitorState.StreamState<U> |
initialized()
Java API
|
static <U> FlowMonitorState.StreamState<U> |
received(U msg)
Java API
|
public static <U> FlowMonitorState.StreamState<U> initialized()
public static <U> FlowMonitorState.StreamState<U> received(U msg)
msg - (undocumented)public static <U> FlowMonitorState.StreamState<U> failed(java.lang.Throwable cause)
cause - (undocumented)public static <U> FlowMonitorState.Finished$ finished()