Class ClientDisconnectedException
Indicates that client-mode local node has been disconnected from the cluster.
Namespace: Apache.Ignite.Core.Common
Assembly: Apache.Ignite.Core.dll
Syntax
public sealed class ClientDisconnectedException : IgniteExceptionConstructors
ClientDisconnectedException()
Initializes a new instance of the ClientDisconnectedException class.
Declaration
public ClientDisconnectedException()ClientDisconnectedException(String)
Initializes a new instance of the ClientDisconnectedException class.
Declaration
public ClientDisconnectedException(string message)Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | message | The message that describes the error. | 
ClientDisconnectedException(String, Exception)
Initializes a new instance of the ClientDisconnectedException class.
Declaration
public ClientDisconnectedException(string message, Exception cause)Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | message | The message. | 
| Exception | cause | The cause. | 
ClientDisconnectedException(String, Exception, Task<Boolean>)
Initializes a new instance of the ClientDisconnectedException class.
Declaration
public ClientDisconnectedException(string message, Exception cause, Task<bool> clientReconnectTask)Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | message | The message. | 
| Exception | cause | The cause. | 
| Task<System.Boolean> | clientReconnectTask | The client reconnect task. | 
Properties
ClientReconnectTask
Gets the client reconnect task, if present.
Declaration
public Task<bool> ClientReconnectTask { get; }Property Value
| Type | Description | 
|---|---|
| Task<System.Boolean> | The client reconnect task, or null. |