Uses of Interface
com.hazelcast.nio.serialization.DataSerializableFactory

Packages that use DataSerializableFactory
com.hazelcast.cache.impl Hazelcast JSR-107 aka JCache implementation 
com.hazelcast.client.impl Contains most of the client side HazelcastInstance implementation functionality. 
com.hazelcast.cluster.impl This package contains the implementation of the cluster functionality.
 
com.hazelcast.collection This package contains classes related to Collections (IList,ISet etc..)
 
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.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.config Provides classes for configuring HazelcastInstance. 
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 Contains implementation specific classes of com.hazelcast.map package. 
com.hazelcast.mapreduce.aggregation.impl This package contains a set of predefined aggregation implementations 
com.hazelcast.mapreduce.impl This package contains the default implementation for the map reduce framework internals. 
com.hazelcast.multimap.impl Contains classes for Hazelcast MultiMap module. 
com.hazelcast.nio.serialization Contains interfaces/classes related to serialization; such as serializer interfaces, input/output streams. 
com.hazelcast.partition Contains the partition logic for Hazelcast. 
com.hazelcast.queue.impl This package contains the IQueue functionality.
The IQueue is the distributed version of the BlockingQueue
com.hazelcast.replicatedmap.impl.operation This package contains some remote operations to execute on remote nodes 
com.hazelcast.spi.impl Contains implementations for Hazelcast SPI. 
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.web Provides Hazelcast-based session replication. 
 

Uses of DataSerializableFactory in com.hazelcast.cache.impl
 

Methods in com.hazelcast.cache.impl that return DataSerializableFactory
 DataSerializableFactory CacheDataSerializerHook.createFactory()
           
 

Uses of DataSerializableFactory in com.hazelcast.client.impl
 

Methods in com.hazelcast.client.impl that return DataSerializableFactory
 DataSerializableFactory ClientDataSerializerHook.createFactory()
           
 

Uses of DataSerializableFactory in com.hazelcast.cluster.impl
 

Methods in com.hazelcast.cluster.impl that return DataSerializableFactory
 DataSerializableFactory ClusterDataSerializerHook.createFactory()
           
 

Uses of DataSerializableFactory in com.hazelcast.collection
 

Methods in com.hazelcast.collection that return DataSerializableFactory
 DataSerializableFactory CollectionDataSerializerHook.createFactory()
           
 

Uses of DataSerializableFactory in com.hazelcast.concurrent.atomiclong
 

Methods in com.hazelcast.concurrent.atomiclong that return DataSerializableFactory
 DataSerializableFactory AtomicLongDataSerializerHook.createFactory()
           
 

Uses of DataSerializableFactory in com.hazelcast.concurrent.atomicreference
 

Methods in com.hazelcast.concurrent.atomicreference that return DataSerializableFactory
 DataSerializableFactory AtomicReferenceDataSerializerHook.createFactory()
           
 

Uses of DataSerializableFactory in com.hazelcast.concurrent.countdownlatch
 

Methods in com.hazelcast.concurrent.countdownlatch that return DataSerializableFactory
 DataSerializableFactory CountDownLatchDataSerializerHook.createFactory()
           
 

Uses of DataSerializableFactory in com.hazelcast.concurrent.lock
 

Methods in com.hazelcast.concurrent.lock that return DataSerializableFactory
 DataSerializableFactory LockDataSerializerHook.createFactory()
           
 

Uses of DataSerializableFactory in com.hazelcast.concurrent.semaphore
 

Methods in com.hazelcast.concurrent.semaphore that return DataSerializableFactory
 DataSerializableFactory SemaphoreDataSerializerHook.createFactory()
           
 

Uses of DataSerializableFactory in com.hazelcast.config
 

Methods in com.hazelcast.config that return types with arguments of type DataSerializableFactory
 Map<Integer,DataSerializableFactory> SerializationConfig.getDataSerializableFactories()
           
 

Methods in com.hazelcast.config with parameters of type DataSerializableFactory
 SerializationConfig SerializationConfig.addDataSerializableFactory(int factoryId, DataSerializableFactory dataSerializableFactory)
           
 

Method parameters in com.hazelcast.config with type arguments of type DataSerializableFactory
 SerializationConfig SerializationConfig.addDataSerializableFactoryClass(int factoryId, Class<? extends DataSerializableFactory> dataSerializableFactoryClass)
           
 SerializationConfig SerializationConfig.setDataSerializableFactories(Map<Integer,DataSerializableFactory> dataSerializableFactories)
           
 

Uses of DataSerializableFactory in com.hazelcast.executor.impl
 

Methods in com.hazelcast.executor.impl that return DataSerializableFactory
 DataSerializableFactory ExecutorDataSerializerHook.createFactory()
           
 

Uses of DataSerializableFactory in com.hazelcast.map.impl
 

Methods in com.hazelcast.map.impl that return DataSerializableFactory
 DataSerializableFactory MapDataSerializerHook.createFactory()
           
 

Uses of DataSerializableFactory in com.hazelcast.mapreduce.aggregation.impl
 

Methods in com.hazelcast.mapreduce.aggregation.impl that return DataSerializableFactory
 DataSerializableFactory AggregationsDataSerializerHook.createFactory()
           
 

Uses of DataSerializableFactory in com.hazelcast.mapreduce.impl
 

Methods in com.hazelcast.mapreduce.impl that return DataSerializableFactory
 DataSerializableFactory MapReduceDataSerializerHook.createFactory()
           
 

Uses of DataSerializableFactory in com.hazelcast.multimap.impl
 

Methods in com.hazelcast.multimap.impl that return DataSerializableFactory
 DataSerializableFactory MultiMapDataSerializerHook.createFactory()
           
 

Uses of DataSerializableFactory in com.hazelcast.nio.serialization
 

Classes in com.hazelcast.nio.serialization that implement DataSerializableFactory
 class ArrayDataSerializableFactory
           
 

Fields in com.hazelcast.nio.serialization with type parameters of type DataSerializableFactory
protected  Map<Integer,DataSerializableFactory> DefaultSerializationServiceBuilder.dataSerializableFactories
           
 

Methods in com.hazelcast.nio.serialization that return DataSerializableFactory
 DataSerializableFactory DataSerializerHook.createFactory()
           
 

Methods in com.hazelcast.nio.serialization with parameters of type DataSerializableFactory
 SerializationServiceBuilder SerializationServiceBuilder.addDataSerializableFactory(int id, DataSerializableFactory factory)
           
 SerializationServiceBuilder DefaultSerializationServiceBuilder.addDataSerializableFactory(int id, DataSerializableFactory factory)
           
 

Uses of DataSerializableFactory in com.hazelcast.partition
 

Methods in com.hazelcast.partition that return DataSerializableFactory
 DataSerializableFactory PartitionDataSerializerHook.createFactory()
           
 

Uses of DataSerializableFactory in com.hazelcast.queue.impl
 

Methods in com.hazelcast.queue.impl that return DataSerializableFactory
 DataSerializableFactory QueueDataSerializerHook.createFactory()
           
 

Uses of DataSerializableFactory in com.hazelcast.replicatedmap.impl.operation
 

Methods in com.hazelcast.replicatedmap.impl.operation that return DataSerializableFactory
 DataSerializableFactory ReplicatedMapDataSerializerHook.createFactory()
           
 

Uses of DataSerializableFactory in com.hazelcast.spi.impl
 

Methods in com.hazelcast.spi.impl that return DataSerializableFactory
 DataSerializableFactory SpiDataSerializerHook.createFactory()
           
 

Uses of DataSerializableFactory in com.hazelcast.topic.impl
 

Methods in com.hazelcast.topic.impl that return DataSerializableFactory
 DataSerializableFactory TopicDataSerializerHook.createFactory()
           
 

Uses of DataSerializableFactory in com.hazelcast.web
 

Methods in com.hazelcast.web that return DataSerializableFactory
 DataSerializableFactory WebDataSerializerHook.createFactory()
           
 



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