LogRecordSequence.EndWriteRestartArea(IAsyncResult) Method

Definition

Ends an asynchronous restart area write operation. This method cannot be inherited.

public:
 virtual System::IO::Log::SequenceNumber EndWriteRestartArea(IAsyncResult ^ result);
public System.IO.Log.SequenceNumber EndWriteRestartArea (IAsyncResult result);
abstract member EndWriteRestartArea : IAsyncResult -> System.IO.Log.SequenceNumber
override this.EndWriteRestartArea : IAsyncResult -> System.IO.Log.SequenceNumber
Public Function EndWriteRestartArea (result As IAsyncResult) As SequenceNumber

Parameters

result
IAsyncResult

A reference to the outstanding asynchronous I/O request.

Returns

The sequence number of the written log record.

Implements

Exceptions

result is not valid.

A new or existing archive tail or base of the active log is invalid.

The request could not be performed because of an unexpected I/O exception.

End has already been called for this asynchronous operation.

The method was called after the sequence has been disposed of.

There is not enough memory to continue the execution of the program.

Access for the specified log sequence is denied by the operating system.

The record sequence is full.

Remarks

This method blocks until the I/O operation has completed. Errors that occur during an asynchronous write request, such as a disk failure during the I/O request, become visible when EndWriteRestartArea is called.

This method must be called exactly once on every IAsyncResult returned by the BeginWriteRestartArea method.

Applies to