hazelcast::client::Address | IP Address |
hazelcast::client::addressComparator | Address comparator functor |
hazelcast::client::serialization::ClassDefinition | ClassDefinition defines a class schema for Portable classes |
hazelcast::client::serialization::ClassDefinitionBuilder | ClassDefinitionBuilder is used to build and register ClassDefinitions manually |
hazelcast::client::ClientConfig | HazelcastClient configuration class |
hazelcast::client::ClientProperties | Client Properties is an internal class |
hazelcast::client::ClientProperty | A client property is a configuration for hazelcast client |
hazelcast::client::Cluster | Hazelcast cluster interface |
hazelcast::client::DistributedObject | Base class for all distributed objects |
hazelcast::client::EntryEvent< K, V > | Map Entry event |
hazelcast::client::EntryEventType | Type of entry event |
hazelcast::client::EntryListener< K, V > | Map Entry listener to get notified when a map entry is added, removed, updated or evicted |
hazelcast::client::EntryAdapter< K, V > | Adapter for EntryListener |
hazelcast::client::EntryView< K, V > | EntryView represents a readonly view of a map entry |
exception | |
hazelcast::client::exception::IException | Base class for all exception originated from Hazelcast methods |
hazelcast::client::exception::AuthenticationException | |
hazelcast::client::exception::HazelcastSerializationException | Raised when an error occur during serialization or deserialization in Hazelcast |
hazelcast::client::exception::IClassCastException | Raised an unexpected type data comes from server |
hazelcast::client::exception::IllegalArgumentException | Raised when an illegal argument is passed to Hazelcast API |
hazelcast::client::exception::IllegalStateException | Raised when method is called in a illegal state |
hazelcast::client::exception::InstanceNotActiveException | Thrown when HazelcastInstance is not active during an invocation |
hazelcast::client::exception::InterruptedException | Some of the Hazelcast operations may throw an InterruptedException if a user thread is interrupted while waiting a response |
hazelcast::client::exception::IOException | Raised when an Input Output error is occurred |
hazelcast::client::exception::TimeoutException | Raised when an operation is timed out |
hazelcast::client::exception::UnexpectedMessageTypeException | If the type expected by the message decoder is different from the received message type, this exception is thrown |
hazelcast::client::exception::UTFDataFormatException | Raised the string format is not correct according to UTF-8 |
hazelcast::client::serialization::FieldDefinition | FieldDefinition defines name, type, index of a field |
hazelcast::client::serialization::FieldType | |
hazelcast::client::GroupConfig | Contains the configuration for Hazelcast groups |
hazelcast::client::HazelcastClient | Hazelcast Client enables you to do all Hazelcast operations without being a member of the cluster |
hazelcast::client::serialization::IdentifiedDataSerializable | Classes that will be used with hazelcast data structures like IMap, IQueue etc should either inherit from one of the following classes : Portable , IdentifiedDataSerializable or it should be custom serializable |
hazelcast::client::query::SqlPredicate | |
IListImpl | |
hazelcast::client::IList< E > | Concurrent, distributed , client implementation of std::list |
IMapImpl | |
hazelcast::client::IMap< K, V > | Concurrent, distributed, observable and queryable map client |
hazelcast::client::InitialMembershipEvent | A event that is send when a InitialMembershipListener} registers itself on a Cluster |
hazelcast::client::InitialMembershipListener | The InitializingMembershipListener is a MembershipListener that will first receives a InitialMembershipEvent when it is registered so it immediately knows which members are available |
IQueueImpl | |
hazelcast::client::IQueue< E > | Concurrent, blocking, distributed, observable, client queue |
ISetImpl | |
hazelcast::client::ISet< E > | Concurrent, distributed client implementation of std::unordered_set |
hazelcast::client::ItemEvent< E > | ItemEvent |
hazelcast::client::ItemEventType | Type of item event |
hazelcast::client::ItemListener< E > | Item listener for IQueue, ISet and IList |
ITopicImpl | |
hazelcast::client::ITopic< E > | Hazelcast provides distribution mechanism for publishing messages that are delivered to multiple subscribers which is also known as publish/subscribe (pub/sub) messaging model |
hazelcast::client::LifecycleEvent | Event to be fired when lifecycle states are changed |
hazelcast::client::LifecycleListener | Listener object for listening lifecycle events of hazelcast instance |
hazelcast::client::LoadBalancer | LoadBalancer allows you to send operations to one of a number of endpoints(Members) |
hazelcast::client::MapEvent | Map events common contract |
hazelcast::client::Member | Cluster member class |
hazelcast::client::MembershipEvent | Membership event fired when a new member is added to the cluster and/or when a member leaves the cluster |
hazelcast::client::MemberAttributeEvent | |
hazelcast::client::MembershipListener | Cluster membership listener |
hazelcast::client::MembershipAdapter | Adapter for MembershipListener |
MultiMapImpl | |
hazelcast::client::MultiMap< K, V > | A specialized distributed map client whose keys can be associated with multiple values |
hazelcast::client::serialization::ObjectDataInput | Provides deserialization methods for primitives types, arrays of primitive types Portable, IdentifiedDataSerializable and custom serializable types |
hazelcast::client::serialization::ObjectDataOutput | Provides serialization methods for primitive types,a arrays of primitive types, Portable, IdentifiedDataSerializable and custom serializables |
hazelcast::client::serialization::Portable | Classes that will be used with hazelcast data structures like IMap, IQueue etc should either inherit from one of the following classes : Portable , IdentifiedDataSerializable or it should be custom serializable |
hazelcast::client::Credentials | Credentials is a container object for endpoint (Members and Clients) security attributes |
hazelcast::client::serialization::VersionedPortable | VersionedPortable is an extension to Portable to support per class version instead of a global serialization version |
hazelcast::client::serialization::PortableReader | Provides a mean of reading portable fields from a binary in form of java primitives arrays of java primitives , nested portable fields and array of portable fields |
hazelcast::client::serialization::PortableWriter | Provides a mean of writing portable fields to a binary in form of java primitives arrays of java primitives , nested portable fields and array of portable fields |
ProxyImpl | |
hazelcast::client::IAtomicLong | IAtomicLong is a distributed atomic long implementation |
hazelcast::client::ICountDownLatch | ICountDownLatch is a backed-up distributed alternative to the java.util.concurrent.CountDownLatch java.util.concurrent.CountDownLatch |
hazelcast::client::IdGenerator | Cluster-wide unique id generator |
hazelcast::client::ILock | Re-entrant Lock, Distributed client implementation of Lock |
hazelcast::client::ISemaphore | ISemaphore is a backed-up distributed alternative to the java.util.concurrent.Semaphore |
hazelcast::client::SerializationConfig | SerializationConfig is used to |
hazelcast::client::serialization::SerializerBase | Internal Base class for Serializers |
hazelcast::client::serialization::Serializer< Serializable > | Base class for custom serialization |
hazelcast::client::Socket | C Sockets wrapper class |
hazelcast::client::SocketInterceptor | Base class for socketInterceptor classes to inherit from |
hazelcast::client::socketPtrComp | Socket Ptr compare method |
TransactionalListImpl | |
hazelcast::client::TransactionalList< E > | Transactional implementation of IList |
TransactionalMapImpl | |
hazelcast::client::TransactionalMap< K, V > | Transactional implementation of IMap |
TransactionalMultiMapImpl | |
hazelcast::client::TransactionalMultiMap< K, V > | Transactional implementation of MultiMap |
TransactionalQueueImpl | |
hazelcast::client::TransactionalQueue< E > | Transactional implementation of IQueue |
TransactionalSetImpl | |
hazelcast::client::TransactionalSet< E > | Transactional implementation of ISet |
hazelcast::client::TransactionContext | Provides a context to do transactional operations; so beginning/committing transactions, but also retrieving transactional data-structures like the TransactionalMap |
hazelcast::client::TransactionOptions | Contains the configuration for a Hazelcast transaction |
hazelcast::client::TransactionType | Transaction type |