public static enum ServerProcedureInterface.ServerOperationType extends Enum<ServerProcedureInterface.ServerOperationType>
Enum Constant and Description |
---|
CRASH_HANDLER |
SPLIT_WAL
help find a available region server as worker and release worker after task done invoke
SPLIT_WAL_REMOTE operation to send real WAL splitting request to worker manage the split wal
task flow, will retry if SPLIT_WAL_REMOTE failed
|
SPLIT_WAL_REMOTE
send the split WAL request to region server and handle the response
|
SWITCH_RPC_THROTTLE |
Modifier and Type | Method and Description |
---|---|
static ServerProcedureInterface.ServerOperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServerProcedureInterface.ServerOperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServerProcedureInterface.ServerOperationType CRASH_HANDLER
public static final ServerProcedureInterface.ServerOperationType SWITCH_RPC_THROTTLE
public static final ServerProcedureInterface.ServerOperationType SPLIT_WAL
public static final ServerProcedureInterface.ServerOperationType SPLIT_WAL_REMOTE
public static ServerProcedureInterface.ServerOperationType[] values()
for (ServerProcedureInterface.ServerOperationType c : ServerProcedureInterface.ServerOperationType.values()) System.out.println(c);
public static ServerProcedureInterface.ServerOperationType 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 © 2007–2020 The Apache Software Foundation. All rights reserved.