@Deprecated public enum StartType extends Enum<StartType>
| Enum Constant and Description |
|---|
AUTOMATIC
Deprecated.
The bridge connection will be started automatically when the broker starts
and it will try with best effort to reconnect if the connection drops or if
the connection failed.
|
LAZY
Deprecated.
This bridge will not start automatically on broker startup.
|
MANUAL
Deprecated.
This bridge will not start and stop automatically.
|
ONCE
Deprecated.
This bridge will start automatically on broker startup.
|
| Modifier and Type | Method and Description |
|---|---|
static StartType |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static StartType[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StartType AUTOMATIC
public static final StartType LAZY
public static final StartType MANUAL
BridgeManagerService to start and stop
this type of bridge.
This bridge won't reconnect automatically if it disconnected unexpectedly, so make sure
you implemented some kind of heartbeat when using this bridge type.public static final StartType ONCE
BridgeManagerService in HiveMQ pluginspublic static StartType[] values()
for (StartType c : StartType.values()) System.out.println(c);
public static StartType 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 © 2013-2018 dc-square GmbH. All Rights Reserved.