Click or drag to resize

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.9.3
Syntax
public interface IHazelcastInstanceAware

The IHazelcastInstanceAware type exposes the following members.

Methods
  NameDescription
Public methodSetHazelcastInstance
Top
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