Table of Contents

Interface IIgniteCluster

Namespace
Apache.Ignite.Network
Assembly
Apache.Ignite.dll

Represents an Ignite cluster, providing access to the cluster nodes and the local node.

public interface IIgniteCluster

Properties

LocalNode

Gets the local cluster node, if available.

Returns the node that hosts the current compute job or streamer receiver (when invoked from Ignite or Ignite), or null on the client side.

IClusterNode? LocalNode { get; }

Property Value

IClusterNode

Methods

GetNodesAsync()

Gets all cluster nodes that are part of the logical topology.

Task<IList<IClusterNode>> GetNodesAsync()

Returns

Task<IList<IClusterNode>>

A task that completes with all cluster nodes.