| IHazelcastInstanceAware Interface |
Used to get IHazelcastInstance reference when submitting a Runnable/Callable using Hazelcast ExecutorService.
Namespace:
Hazelcast.Core
Assembly:
Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.11
Syntax public interface IHazelcastInstanceAware
Public Interface IHazelcastInstanceAware
public interface class IHazelcastInstanceAware
type IHazelcastInstanceAware = interface end
The IHazelcastInstanceAware type exposes the following members.
Methods Remarks
Used to get IHazelcastInstance reference when submitting a Runnable/Callable using Hazelcast ExecutorService.
Before executing the Runnable/Callable Hazelcast will invoke
SetHazelcastInstance(IHazelcastInstance)
method with
the reference to IHazelcastInstance that is executing. This way the implementer will have a chance to get the
reference to IHazelcastInstance.
See Also