Package | Description |
---|---|
com.hazelcast.core |
Provides core API interfaces/classes.
|
com.hazelcast.monitor |
Contains Hazelcast statistics interfaces related to map, queue, topic, multimap, executor service etc.
|
com.hazelcast.nio |
This package contains classes related to New IO
|
com.hazelcast.spi |
Provides interfaces/classes for the Hazelcast SPI for building distributed data structures and services.
|
com.hazelcast.version |
This package contains classes to support the versioning API.
|
Modifier and Type | Method and Description |
---|---|
Version |
Cluster.getClusterVersion()
The cluster version indicates the operating version of the cluster.
|
Modifier and Type | Method and Description |
---|---|
void |
Cluster.changeClusterVersion(Version version)
Changes the cluster version transactionally.
|
void |
Cluster.changeClusterVersion(Version version,
TransactionOptions options)
Changes the cluster version transactionally, with the transaction options provided.
|
Modifier and Type | Method and Description |
---|---|
Version |
NodeState.getClusterVersion() |
Modifier and Type | Method and Description |
---|---|
Version |
VersionAware.getVersion() |
Modifier and Type | Method and Description |
---|---|
void |
BufferObjectDataOutput.setVersion(Version version) |
void |
BufferObjectDataInput.setVersion(Version version) |
Modifier and Type | Method and Description |
---|---|
protected boolean |
AbstractDistributedObject.isClusterVersionEqualTo(Version version) |
protected boolean |
AbstractDistributedObject.isClusterVersionGreaterOrEqual(Version version) |
protected boolean |
AbstractDistributedObject.isClusterVersionGreaterThan(Version version) |
protected boolean |
AbstractDistributedObject.isClusterVersionLessOrEqual(Version version) |
protected boolean |
AbstractDistributedObject.isClusterVersionLessThan(Version version) |
protected boolean |
AbstractDistributedObject.isClusterVersionUnknownOrGreaterOrEqual(Version version) |
protected boolean |
AbstractDistributedObject.isClusterVersionUnknownOrGreaterThan(Version version) |
protected boolean |
AbstractDistributedObject.isClusterVersionUnknownOrLessOrEqual(Version version) |
protected boolean |
AbstractDistributedObject.isClusterVersionUnknownOrLessThan(Version version) |
Modifier and Type | Field and Description |
---|---|
static Version |
Version.UNKNOWN
Version 0.0 is UNKNOWN constant
|
Modifier and Type | Method and Description |
---|---|
Version |
MemberVersion.asVersion() |
static Version |
Version.of(int major,
int minor) |
static Version |
Version.of(String version)
Parse the given string to a
Version . |
Modifier and Type | Method and Description |
---|---|
int |
Version.compareTo(Version o) |
boolean |
Version.isBetween(Version from,
Version to)
Checks if the version is between specified version (both ends inclusive)
|
boolean |
Version.isEqualTo(Version version) |
boolean |
Version.isGreaterOrEqual(Version version) |
boolean |
Version.isGreaterThan(Version version) |
boolean |
Version.isLessOrEqual(Version version) |
boolean |
Version.isLessThan(Version version) |
boolean |
Version.isUnknownOrGreaterOrEqual(Version version) |
boolean |
Version.isUnknownOrGreaterThan(Version version) |
boolean |
Version.isUnknownOrLessOrEqual(Version version) |
boolean |
Version.isUnknownOrLessThan(Version version) |
Copyright © 2019 Hazelcast, Inc.. All Rights Reserved.