public static enum StreamingActor.Control extends Enum<StreamingActor.Control>
| Enum Constant and Description |
|---|
RETRIEVE_WEBSOCKET_CONFIG
Request the current websocket config.
|
SCRAPE_STREAM_COUNTER
Tell streaming actor to set the stream counter to its current number of child actors.
|
| Modifier and Type | Method and Description |
|---|---|
static StreamingActor.Control |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StreamingActor.Control[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StreamingActor.Control SCRAPE_STREAM_COUNTER
public static final StreamingActor.Control RETRIEVE_WEBSOCKET_CONFIG
public static StreamingActor.Control[] values()
for (StreamingActor.Control c : StreamingActor.Control.values()) System.out.println(c);
public static StreamingActor.Control valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2017–2019 Eclipse Foundation. All rights reserved.