Class BulkLoadCheckpointTimeoutException
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)
Creates a new BulkLoadCheckpointTimeoutException.
public BulkLoadCheckpointTimeoutException(long bulkSessionId, TimeSpan timeout)
Parameters
bulkSessionIdlong64-bit id of the session whose checkpoint timed out.
timeoutTimeSpanConfigured checkpoint timeout that elapsed.
Properties
BulkSessionId
64-bit id of the session whose checkpoint timed out.
public long BulkSessionId { get; }
Property Value
Timeout
The timeout value that elapsed.
public TimeSpan Timeout { get; }