Package | Description |
---|---|
com.hazelcast.monitor.impl |
Contains Hazelcast statistics implementations related to map, queue, topic, multimap, executor service etc.
|
com.hazelcast.query.impl |
Contains the implementation classes of the query functionality.
|
Modifier and Type | Class and Description |
---|---|
class |
GlobalIndexOperationStats
The implementation of operation index stats specialized for global indexes.
|
class |
PartitionIndexOperationStats
The implementation of operation index stats specialized for partition indexes.
|
Modifier and Type | Field and Description |
---|---|
static IndexOperationStats |
IndexOperationStats.EMPTY
Empty no-op index operation stats instance.
|
Modifier and Type | Method and Description |
---|---|
IndexOperationStats |
PartitionPerIndexStats.createOperationStats() |
IndexOperationStats |
GlobalPerIndexStats.createOperationStats() |
IndexOperationStats |
PerIndexStats.createOperationStats()
Creates a new per-operation stats instance.
|
Modifier and Type | Method and Description |
---|---|
void |
PartitionPerIndexStats.onInsert(long timestamp,
IndexOperationStats operationStats,
Index.OperationSource operationSource) |
void |
GlobalPerIndexStats.onInsert(long timestamp,
IndexOperationStats operationStats,
Index.OperationSource operationSource) |
void |
PerIndexStats.onInsert(long timestamp,
IndexOperationStats operationStats,
Index.OperationSource operationSource)
Invoked by the associated index after every insert operation.
|
void |
PartitionPerIndexStats.onRemove(long timestamp,
IndexOperationStats operationStats,
Index.OperationSource operationSource) |
void |
GlobalPerIndexStats.onRemove(long timestamp,
IndexOperationStats operationStats,
Index.OperationSource operationSource) |
void |
PerIndexStats.onRemove(long timestamp,
IndexOperationStats operationStats,
Index.OperationSource operationSource)
Invoked by the associated index after every remove operation.
|
void |
PartitionPerIndexStats.onUpdate(long timestamp,
IndexOperationStats operationStats,
Index.OperationSource operationSource) |
void |
GlobalPerIndexStats.onUpdate(long timestamp,
IndexOperationStats operationStats,
Index.OperationSource operationSource) |
void |
PerIndexStats.onUpdate(long timestamp,
IndexOperationStats operationStats,
Index.OperationSource operationSource)
Invoked by the associated index after every update operation.
|
Modifier and Type | Method and Description |
---|---|
void |
IndexStore.insert(Object value,
QueryableEntry entry,
IndexOperationStats operationStats)
Inserts the given entry into this index store under the given value
acting as an index key.
|
void |
BaseIndexStore.insert(Object value,
QueryableEntry record,
IndexOperationStats operationStats) |
void |
IndexStore.remove(Object value,
Data indexKey,
IndexOperationStats operationStats)
Removes the existing entry mapping in this index.
|
void |
BaseIndexStore.remove(Object value,
Data indexKey,
IndexOperationStats operationStats) |
void |
IndexStore.update(Object oldValue,
Object newValue,
QueryableEntry entry,
IndexOperationStats operationStats)
Updates the existing entry mapping in this index by remapping it from the
given old value to the new given value.
|
void |
BaseIndexStore.update(Object oldValue,
Object newValue,
QueryableEntry entry,
IndexOperationStats operationStats) |
Copyright © 2019 Hazelcast, Inc.. All Rights Reserved.