Table of Contents

Class DataStreamerException

Namespace
Apache.Ignite.Table
Assembly
Apache.Ignite.dll

Represents an exception that is thrown during data streaming. Includes information about failed items.

[Serializable]
public class DataStreamerException : IgniteException, ISerializable
Inheritance
DataStreamerException
Implements
Inherited Members

Constructors

DataStreamerException(Guid, int, string?, Exception, ISet<object>)

Initializes a new instance of the DataStreamerException class.

public DataStreamerException(Guid traceId, int code, string? message, Exception innerException, ISet<object> failedItems)

Parameters

traceId Guid

Trace id.

code int

Code.

message string

Message.

innerException Exception

Inner exception.

failedItems ISet<object>

Failed items.

Properties

FailedItems

Gets the set of items that were not streamed to the cluster.

public ISet<object> FailedItems { get; }

Property Value

ISet<object>

Methods

Create(Exception, IEnumerable)

Creates a new instance of DataStreamerException from the provided cause and failed items.

public static DataStreamerException Create(Exception cause, IEnumerable failedItems)

Parameters

cause Exception

Cause.

failedItems IEnumerable

Failed items.

Returns

DataStreamerException

Exception.