IHazelcastClient Interface
Namespace: Hazelcast
Assembly: Hazelcast.Net.dll
Represents the Hazelcast client.
The Hazelcast client is the entry point to all interactions with an Hazelcast cluster. A client is created
by a Hazelcast
var options = new HazelcastOptionsBuilder.Build();
var client = await HazelcastClientFactory.StartNewClientAsync(options);
// ... use the client ...
await client.DisposeAsync();
public interface IHazelcastClient : IAsyncDisposable
Inherited Members
Properties
Name | Description |
---|---|
CPSubsystem | Gets the CP subsystem. |
Cluster |
Gets the name of the cluster. |
Id | Gets the unique identifier of this client. |
Is |
Whether the client is active. |
Is |
Whether the client is connected. |
Members | Gets a snapshot of the members that the cluster declared to this client. |
Name | Gets the name of this client. |
Options | Gets the options that were used to configure this client. |
Sql | Returns a service to execute distributed SQL queries. |
State | Gets the client state. |