Uses of Class
com.hazelcast.spi.AbstractDistributedObject

Packages that use AbstractDistributedObject
com.hazelcast.cache.impl Hazelcast JSR-107 aka JCache implementation 
com.hazelcast.collection.impl.collection   
com.hazelcast.collection.impl.list This package contains IList functionality for Hazelcast.
 
com.hazelcast.collection.impl.queue   
com.hazelcast.collection.impl.set This package contains ISet functionality for Hazelcast.
 
com.hazelcast.collection.impl.txncollection   
com.hazelcast.collection.impl.txnlist   
com.hazelcast.collection.impl.txnqueue   
com.hazelcast.collection.impl.txnset   
com.hazelcast.concurrent.atomiclong This package contains IAtomicLong functionality for Hazelcast.
The IAtomicLong is the distributed version of the AtomicLong
com.hazelcast.concurrent.atomicreference This package contains IAtomicReferece functionality for Hazelcast.
The IAtomicReference is the distributed version of the AtomicReference
com.hazelcast.concurrent.countdownlatch This package contains ICountDownLatch functionality for Hazelcast.
The ICountDownLatch is the distributed version of the CountDownLatch
com.hazelcast.concurrent.idgen This package contains IdGenerator functionality for Hazelcast.
With the IdGenerator it is very simple to create cluster wide id's. 
com.hazelcast.concurrent.lock This package contains Lock for Hazelcast.
The ILock is the distributed version of the Lock
com.hazelcast.concurrent.semaphore This package contains ISemaphore functionality for Hazelcast.
The ISemaphore is the distributed version of the Semaphore
com.hazelcast.executor.impl This package contains IExecutorService functionality for Hazelcast.
The IExecutorService extends the ExecutorService and provides all kinds of additional methods related to distributed systems. 
com.hazelcast.map.impl.proxy Contains map proxy implementation and support classes. 
com.hazelcast.map.impl.tx Contains implementation classes for TransactionalMap 
com.hazelcast.multimap.impl Contains classes for Hazelcast MultiMap module. 
com.hazelcast.multimap.impl.txn This package contains the Transaction behavior for the Multimap.
 
com.hazelcast.replicatedmap.impl This package contains the implementation of the replicated map service itself and some connection interfaces only used internally - No public API! 
com.hazelcast.ringbuffer.impl Contains the Ringbuffer implementation classes. 
com.hazelcast.topic.impl This package contains ITopic functionality for Hazelcast.
With the ITopic it is possible to create publish subscribe solutions similar to JMS Topics. 
com.hazelcast.topic.impl.reliable   
com.hazelcast.transaction.impl.xa Provides implementation for Hazelcast XA transaction support. 
 

Uses of AbstractDistributedObject in com.hazelcast.cache.impl
 

Subclasses of AbstractDistributedObject in com.hazelcast.cache.impl
 class CacheDistributedObject
          Basic distributed object which serves as an accessor to CacheService and NodeEngine.
 

Uses of AbstractDistributedObject in com.hazelcast.collection.impl.collection
 

Subclasses of AbstractDistributedObject in com.hazelcast.collection.impl.collection
 class AbstractCollectionProxyImpl<S extends RemoteService,E>
           
 

Uses of AbstractDistributedObject in com.hazelcast.collection.impl.list
 

Subclasses of AbstractDistributedObject in com.hazelcast.collection.impl.list
 class ListProxyImpl<E>
           
 

Uses of AbstractDistributedObject in com.hazelcast.collection.impl.queue
 

Subclasses of AbstractDistributedObject in com.hazelcast.collection.impl.queue
 class QueueProxyImpl<E>
          Proxy implementation for the Queue.
 

Uses of AbstractDistributedObject in com.hazelcast.collection.impl.set
 

Subclasses of AbstractDistributedObject in com.hazelcast.collection.impl.set
 class SetProxyImpl<E>
           
 

Uses of AbstractDistributedObject in com.hazelcast.collection.impl.txncollection
 

Subclasses of AbstractDistributedObject in com.hazelcast.collection.impl.txncollection
 class AbstractTransactionalCollectionProxy<S extends RemoteService,E>
           
 

Uses of AbstractDistributedObject in com.hazelcast.collection.impl.txnlist
 

Subclasses of AbstractDistributedObject in com.hazelcast.collection.impl.txnlist
 class TransactionalListProxy<E>
           
 

Uses of AbstractDistributedObject in com.hazelcast.collection.impl.txnqueue
 

Subclasses of AbstractDistributedObject in com.hazelcast.collection.impl.txnqueue
 class TransactionalQueueProxy<E>
          Provides proxy for the Transactional Queue.
 class TransactionalQueueProxySupport
          Provides support for proxy of the Transactional Queue.
 

Uses of AbstractDistributedObject in com.hazelcast.collection.impl.txnset
 

Subclasses of AbstractDistributedObject in com.hazelcast.collection.impl.txnset
 class TransactionalSetProxy<E>
           
 

Uses of AbstractDistributedObject in com.hazelcast.concurrent.atomiclong
 

Subclasses of AbstractDistributedObject in com.hazelcast.concurrent.atomiclong
 class AtomicLongProxy
           
 

Uses of AbstractDistributedObject in com.hazelcast.concurrent.atomicreference
 

Subclasses of AbstractDistributedObject in com.hazelcast.concurrent.atomicreference
 class AtomicReferenceProxy<E>
           
 

Uses of AbstractDistributedObject in com.hazelcast.concurrent.countdownlatch
 

Subclasses of AbstractDistributedObject in com.hazelcast.concurrent.countdownlatch
 class CountDownLatchProxy
           
 

Uses of AbstractDistributedObject in com.hazelcast.concurrent.idgen
 

Subclasses of AbstractDistributedObject in com.hazelcast.concurrent.idgen
 class IdGeneratorProxy
           
 

Uses of AbstractDistributedObject in com.hazelcast.concurrent.lock
 

Subclasses of AbstractDistributedObject in com.hazelcast.concurrent.lock
 class LockProxy
           
 

Uses of AbstractDistributedObject in com.hazelcast.concurrent.semaphore
 

Subclasses of AbstractDistributedObject in com.hazelcast.concurrent.semaphore
 class SemaphoreProxy
           
 

Uses of AbstractDistributedObject in com.hazelcast.executor.impl
 

Subclasses of AbstractDistributedObject in com.hazelcast.executor.impl
 class ExecutorServiceProxy
           
 

Uses of AbstractDistributedObject in com.hazelcast.map.impl.proxy
 

Subclasses of AbstractDistributedObject in com.hazelcast.map.impl.proxy
 class MapProxyImpl<K,V>
          Proxy implementation of IMap interface.
 

Uses of AbstractDistributedObject in com.hazelcast.map.impl.tx
 

Subclasses of AbstractDistributedObject in com.hazelcast.map.impl.tx
 class TransactionalMapProxy
          Proxy implementation of TransactionalMap interface.
 class TransactionalMapProxySupport
          Base class contains proxy helper methods for TransactionalMapProxy
 

Uses of AbstractDistributedObject in com.hazelcast.multimap.impl
 

Subclasses of AbstractDistributedObject in com.hazelcast.multimap.impl
 class MultiMapProxySupport
           
 class ObjectMultiMapProxy<K,V>
           
 

Uses of AbstractDistributedObject in com.hazelcast.multimap.impl.txn
 

Subclasses of AbstractDistributedObject in com.hazelcast.multimap.impl.txn
 class TransactionalMultiMapProxy<K,V>
           
 class TransactionalMultiMapProxySupport
           
 

Uses of AbstractDistributedObject in com.hazelcast.replicatedmap.impl
 

Subclasses of AbstractDistributedObject in com.hazelcast.replicatedmap.impl
 class ReplicatedMapProxy<K,V>
          The internal ReplicatedMap implementation proxying the requests to the underlying ReplicatedRecordStore
 

Uses of AbstractDistributedObject in com.hazelcast.ringbuffer.impl
 

Subclasses of AbstractDistributedObject in com.hazelcast.ringbuffer.impl
 class RingbufferProxy<E>
          The serverside proxy to access a Ringbuffer.
 

Uses of AbstractDistributedObject in com.hazelcast.topic.impl
 

Subclasses of AbstractDistributedObject in com.hazelcast.topic.impl
 class TopicProxy<E>
           
 class TopicProxySupport
           
 class TotalOrderedTopicProxy
           
 

Uses of AbstractDistributedObject in com.hazelcast.topic.impl.reliable
 

Subclasses of AbstractDistributedObject in com.hazelcast.topic.impl.reliable
 class ReliableTopicProxy<E>
          The serverside ITopic implementation for reliable topics.
 

Uses of AbstractDistributedObject in com.hazelcast.transaction.impl.xa
 

Subclasses of AbstractDistributedObject in com.hazelcast.transaction.impl.xa
 class XAResourceImpl
          Server side XaResource implementation
 



Copyright © 2015 Hazelcast, Inc.. All Rights Reserved.