com.hazelcast.spi
Interface RemoteService

All Known Subinterfaces:
ICacheService
All Known Implementing Classes:
AbstractCacheService, AtomicLongService, AtomicReferenceService, CacheService, CollectionService, CountDownLatchService, DistributedExecutorService, IdGeneratorService, ListService, LockServiceImpl, MapReduceService, MapService, MultiMapService, QueueService, ReliableTopicService, ReplicatedMapService, RingbufferService, SemaphoreService, SetService, TopicService, XAService

public interface RemoteService

An interface that can be implemented by SPI-Services to give them the ability to create proxies to distributed objects.

Author:
mdogan 10/31/12

Method Summary
 DistributedObject createDistributedObject(String objectName)
          Creates a distributed object.
 void destroyDistributedObject(String objectName)
          Destroys a distributed object.
 

Method Detail

createDistributedObject

DistributedObject createDistributedObject(String objectName)
Creates a distributed object.

Parameters:
objectName - the name for the created distributed object
Returns:
the created distributed object

destroyDistributedObject

void destroyDistributedObject(String objectName)
Destroys a distributed object.

Parameters:
objectName - the name of the distributed object to destroy


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