@PrivateApi public enum ClientProperty extends Enum<ClientProperty> implements HazelcastProperty
| Type | Property and Description |
|---|---|
String |
clearSystem |
| Enum Constant and Description |
|---|
EVENT_QUEUE_CAPACITY
Capacity of the executor that handles the incoming event packets.
|
EVENT_THREAD_COUNT
Number of the threads to handle the incoming event packets.
|
HEARTBEAT_INTERVAL
Time interval between the heartbeats sent by the client to the nodes.
|
HEARTBEAT_TIMEOUT
Client sends heartbeat messages to the members and this is the timeout for this sending operations.
|
INVOCATION_TIMEOUT_SECONDS
Time to give up on invocation when a member in the member list is not reachable.
|
MAX_CONCURRENT_INVOCATIONS
The maximum number of concurrent invocations allowed.
|
SHUFFLE_MEMBER_LIST
Client shuffles the given member list to prevent all clients to connect to the same node when
this property is set to false.
|
| Modifier and Type | Method and Description |
|---|---|
String |
clearSystemProperty() |
String |
getDefaultValue() |
int |
getIndex() |
String |
getName() |
GroupProperty |
getParent() |
String |
getSystemProperty() |
TimeUnit |
getTimeUnit() |
void |
setSystemProperty(String value) |
String |
toString() |
static ClientProperty |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClientProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClientProperty SHUFFLE_MEMBER_LIST
public static final ClientProperty HEARTBEAT_TIMEOUT
public static final ClientProperty HEARTBEAT_INTERVAL
public static final ClientProperty EVENT_THREAD_COUNT
public static final ClientProperty EVENT_QUEUE_CAPACITY
public static final ClientProperty INVOCATION_TIMEOUT_SECONDS
public static final ClientProperty MAX_CONCURRENT_INVOCATIONS
clearSystemProperty in interface HazelcastPropertypublic static ClientProperty[] values()
for (ClientProperty c : ClientProperty.values()) System.out.println(c);
public static ClientProperty 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 nullpublic int getIndex()
getIndex in interface HazelcastPropertypublic String getName()
getName in interface HazelcastPropertypublic String getDefaultValue()
getDefaultValue in interface HazelcastPropertypublic TimeUnit getTimeUnit()
getTimeUnit in interface HazelcastPropertypublic GroupProperty getParent()
getParent in interface HazelcastPropertypublic void setSystemProperty(String value)
setSystemProperty in interface HazelcastPropertypublic String getSystemProperty()
getSystemProperty in interface HazelcastPropertypublic String clearSystemProperty()
clearSystemProperty in interface HazelcastPropertypublic String toString()
toString in class Enum<ClientProperty>Copyright © 2016 Hazelcast, Inc.. All Rights Reserved.