Base class for all distributed objects. More...
#include <DistributedObject.h>
Public Member Functions | |
const std::string & | getServiceName () const |
Returns the service name for this object. | |
const std::string & | getName () const |
Returns the unique name for this DistributedObject. More... | |
virtual void | destroy ()=0 |
Destroys this object cluster-wide. More... | |
virtual | ~DistributedObject () |
Destructor. | |
Public Member Functions inherited from hazelcast::client::IDistributedObject | |
virtual | ~IDistributedObject () |
Destructor. | |
Protected Member Functions | |
DistributedObject (const std::string &serviceName, const std::string &objectName) | |
Constructor. | |
virtual void | onDestroy () |
method to be called when cluster-wide destroy method is called. | |
Protected Attributes | |
impl::DistributedObjectInfo | info |
Friends | |
class | HazelcastClient |
Base class for all distributed objects.
|
pure virtual |
Destroys this object cluster-wide.
Clears and releases all resources for this object.
Implements hazelcast::client::IDistributedObject.
|
virtual |
Returns the unique name for this DistributedObject.
Implements hazelcast::client::IDistributedObject.