Uses of Class
com.hazelcast.spi.properties.HazelcastProperty
Package
Description
Contains the Hazelcast client properties implementation.
Contains the Hazelcast properties implementation.
-
Uses of HazelcastProperty in com.hazelcast.client.properties
Modifier and TypeFieldDescriptionstatic final HazelcastProperty
ClientProperty.BACKPRESSURE_BACKOFF_TIMEOUT_MILLIS
Control the maximum timeout in millis to wait for an invocation space to be available.static final HazelcastProperty
ClientProperty.CLIENT_CONNECTIVITY_LOGGING_DELAY_SECONDS
Sets the client connectivity logging delay in seconds.static final HazelcastProperty
ClientProperty.CONCURRENT_WINDOW_MS
Property needed for concurrency detection so that write through and dynamic response handling can be done correctly.static final HazelcastProperty
ClientProperty.DISCOVERY_SPI_ENABLED
Enables the Discovery SPIstatic final HazelcastProperty
ClientProperty.DISCOVERY_SPI_PUBLIC_IP_ENABLED
Enables the Discovery Joiner to use public IP from DiscoveredNode.static final HazelcastProperty
ClientProperty.EVENT_QUEUE_CAPACITY
Capacity of the executor that handles the incoming event packets.static final HazelcastProperty
ClientProperty.EVENT_THREAD_COUNT
Number of the threads to handle the incoming event packets.static final HazelcastProperty
ClientProperty.FAIL_ON_INDETERMINATE_OPERATION_STATE
When this configuration is enabled, if an operation has sync backups and acks are not received from backup replicas in time, or the member which owns primary replica of the target partition leaves the cluster, then the invocation fails withIndeterminateOperationStateException
.static final HazelcastProperty
ClientProperty.HEARTBEAT_INTERVAL
Time interval between the heartbeats sent by the client to the nodes.static final HazelcastProperty
ClientProperty.HEARTBEAT_TIMEOUT
Client sends heartbeat messages to the members and this is the timeout for this sending operations.static final HazelcastProperty
ClientProperty.INVOCATION_RETRY_PAUSE_MILLIS
Pause time between each retry cycle of an invocation in milliseconds.static final HazelcastProperty
ClientProperty.INVOCATION_TIMEOUT_SECONDS
When an invocation gets an exception because: - Member throws an exception.static final HazelcastProperty
ClientProperty.IO_BALANCER_INTERVAL_SECONDS
The interval in seconds betweenIOBalancer
executions.static final HazelcastProperty
ClientProperty.IO_INPUT_THREAD_COUNT
Controls the number of IO input threads.static final HazelcastProperty
ClientProperty.IO_OUTPUT_THREAD_COUNT
Controls the number of IO output threads.static final HazelcastProperty
ClientProperty.IO_WRITE_THROUGH_ENABLED
Optimization that allows sending of packets over the network to be done on the calling thread if the conditions are right.static final HazelcastProperty
ClientProperty.MAX_CONCURRENT_INVOCATIONS
The maximum number of concurrent invocations allowed.static final HazelcastProperty
ClientProperty.METRICS_COLLECTION_FREQUENCY
Sets the metrics collection frequency in seconds.static final HazelcastProperty
ClientProperty.METRICS_DEBUG
Enables collecting debug metrics.static final HazelcastProperty
ClientProperty.METRICS_ENABLED
Enables/disables metrics collection altogether.static final HazelcastProperty
ClientProperty.METRICS_JMX_ENABLED
Enables/disables exposing metrics on JMX.static final HazelcastProperty
ClientProperty.OPERATION_BACKUP_TIMEOUT_MILLIS
If an operation has backups, this property specifies how long the invocation will wait for acks from the backup replicas.static final HazelcastProperty
ClientProperty.PARTITIONING_STRATEGY_CLASS
Class name implementingPartitioningStrategy
, which defines key to partition mapping.static final HazelcastProperty
ClientProperty.RESPONSE_THREAD_COUNT
The number of response threads.static final HazelcastProperty
ClientProperty.RESPONSE_THREAD_DYNAMIC
Enabled dynamic switching between processing responses on the io threads and offloading the response threads.static final HazelcastProperty
ClientProperty.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 true.static final HazelcastProperty
ClientProperty.STATISTICS_ENABLED
Deprecated.since 4.0.static final HazelcastProperty
ClientProperty.STATISTICS_PERIOD_SECONDS
Deprecated.since 4.0. -
Uses of HazelcastProperty in com.hazelcast.spi.properties
Modifier and TypeFieldDescriptionstatic final HazelcastProperty
ClusterProperty.BACKPRESSURE_ENABLED
Using back pressure, you can prevent an overload of pending asynchronous backups.static final HazelcastProperty
ClusterProperty.CLIENT_PROTOCOL_UNVERIFIED_MESSAGE_BYTES
Client protocol message size limit (in bytes) for unverified connections (i.e.static final HazelcastProperty
ClusterProperty.DISCOVERY_SPI_ENABLED
Enables the Discovery SPI lookupstatic final HazelcastProperty
ClusterProperty.EVENT_THREAD_COUNT
Number of threads for the { com.hazelcast.spi.impl.eventservice.impl.EventServiceImpl} executor.static final HazelcastProperty
ClusterProperty.GENERIC_OPERATION_THREAD_COUNT
The number of generic operation handler threads per member.static final HazelcastProperty
ClusterProperty.IO_THREAD_COUNT
The number of threads doing socket input and the number of threads doing socket output.static final HazelcastProperty
ClusterProperty.LOGGING_ENABLE_DETAILS
Controls whether cluster name, ip and version should be included in all log messages.static final HazelcastProperty
ClusterProperty.LOGGING_SHUTDOWN
Controls whether Hazelcast will explicitly shutdown the logging implementation as part of Hazelcast graceful shutdown procedure.static final HazelcastProperty
ClusterProperty.LOGGING_TYPE
Name of logging framework type to send logging events.static final HazelcastProperty
ClusterProperty.OPERATION_BACKUP_TIMEOUT_MILLIS
If an operation has backups, this property specifies how long the invocation will wait for acks from the backup replicas.static final HazelcastProperty
ClusterProperty.PARTITION_COUNT
Total number of partitions in the Hazelcast cluster.static final HazelcastProperty
ClusterProperty.PARTITION_OPERATION_THREAD_COUNT
The number of partition operation handler threads per member.static final HazelcastProperty
ClusterProperty.PARTITIONING_STRATEGY_CLASS
Class name implementing { com.hazelcast.partition.PartitioningStrategy}, which defines key to partition mapping.static final HazelcastProperty
ClusterProperty.QUERY_RESULT_SIZE_LIMIT
Result size limit for query operations on maps.static final HazelcastProperty
ClusterProperty.SERIALIZATION_VERSION
Hazelcast serialization version.static final HazelcastProperty
ClusterProperty.SOCKET_CLIENT_BUFFER_DIRECT
If the bytebuffers used in the socket should be a direct bytebuffer (true
) or a regular bytebuffer (false
).Modifier and TypeMethodDescriptionHazelcastProperty.getParent()
Returns the parent { ClusterProperty} of the property.HazelcastProperty.setDeprecatedName
(String deprecatedName) Sets the deprecated name of this property.Modifier and TypeMethodDescriptionboolean
HazelcastProperties.containsKey
(HazelcastProperty property) Returns true if value for given key is provided (either as a HazelcastProperty or a System property).boolean
HazelcastProperties.getBoolean
(HazelcastProperty property) Returns the configured boolean value of a { HazelcastProperty}.double
HazelcastProperties.getDouble
(HazelcastProperty property) Returns the configured double value of a { HazelcastProperty}.<E extends Enum>
EHazelcastProperties.getEnum
(HazelcastProperty property, Class<E> enumClazz) Returns the configured enum value of a { ClusterProperty}.float
HazelcastProperties.getFloat
(HazelcastProperty property) Returns the configured float value of a { HazelcastProperty}.int
HazelcastProperties.getInteger
(HazelcastProperty property) Returns the configured int value of a { HazelcastProperty}.long
HazelcastProperties.getLong
(HazelcastProperty property) Returns the configured long value of a { HazelcastProperty}.long
HazelcastProperties.getMillis
(HazelcastProperty property) Returns the configured value of a { HazelcastProperty} converted to milliseconds.long
HazelcastProperties.getNanos
(HazelcastProperty property) Returns the configured value of a { HazelcastProperty} converted to nanoseconds.long
HazelcastProperties.getPositiveMillisOrDefault
(HazelcastProperty property) Returns the configured value of a { HazelcastProperty} converted to milliseconds if it is positive, otherwise returns its default value.long
HazelcastProperties.getPositiveMillisOrDefault
(HazelcastProperty property, long defaultValue) Returns the configured value of a { HazelcastProperty} converted to milliseconds if it is positive, otherwise returns the passed default value.int
HazelcastProperties.getSeconds
(HazelcastProperty property) Returns the configured value of a { HazelcastProperty} converted to seconds.HazelcastProperties.getString
(HazelcastProperty property) Returns the configured value of a { HazelcastProperty} as String.ModifierConstructorDescriptionHazelcastProperty
(String name, HazelcastProperty property) HazelcastProperty
(String name, String defaultValue, TimeUnit timeUnit, HazelcastProperty parent)