Table of Contents

Class BulkLoadCheckpointTimeoutException

Namespace
Typhon.Engine
Assembly
Typhon.Engine.dll

Thrown by CompleteBulkLoad() when the synchronous checkpoint did not complete within CheckpointTimeout. The bulk session remains alive — the caller may retry CompleteBulkLoad() (e.g., with a longer timeout) or call Dispose() to discard.

public class BulkLoadCheckpointTimeoutException : DurabilityException, ISerializable
Inheritance
BulkLoadCheckpointTimeoutException
Implements
Inherited Members

Constructors

BulkLoadCheckpointTimeoutException(long, TimeSpan)

public BulkLoadCheckpointTimeoutException(long bulkSessionId, TimeSpan timeout)

Parameters

bulkSessionId long

64-bit id of the session whose checkpoint timed out.

timeout TimeSpan

Configured checkpoint timeout that elapsed.

Properties

BulkSessionId

64-bit id of the session whose checkpoint timed out.

public long BulkSessionId { get; }

Property Value

long

Timeout

The timeout value that elapsed.

public TimeSpan Timeout { get; }

Property Value

TimeSpan