IRecordSequence.BeginFlush(SequenceNumber, AsyncCallback, Object) Method

Definition

When overridden in a derived class, begins an asynchronous flush operation, using space previously reserved in the sequence.

public:
 IAsyncResult ^ BeginFlush(System::IO::Log::SequenceNumber sequenceNumber, AsyncCallback ^ callback, System::Object ^ state);
public IAsyncResult BeginFlush (System.IO.Log.SequenceNumber sequenceNumber, AsyncCallback callback, object state);
abstract member BeginFlush : System.IO.Log.SequenceNumber * AsyncCallback * obj -> IAsyncResult
Public Function BeginFlush (sequenceNumber As SequenceNumber, callback As AsyncCallback, state As Object) As IAsyncResult

Parameters

sequenceNumber
SequenceNumber

The sequence number of the latest record that must be written. If this SequenceNumber is invalid, then all records must be written.

callback
AsyncCallback

An optional asynchronous callback, to be called when the flush is complete.

state
Object

A user-provided object that distinguishes this particular asynchronous flush request from other requests.

Returns

An IAsyncResult that represents the asynchronous flush operation, which could still be pending.

Exceptions

One or more of the arguments is invalid.

An I/O error occurred while flushing the data.

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

Remarks

You should pass the IAsyncResult returned by the current method to the EndFlush method to ensure that the flush completes and resources are freed appropriately. If an error occurs during an asynchronous flush, an exception is not thrown until the EndFlush method is called with the IAsyncResult returned by this method.

Calling this method ensures that all records that have been appended to the IRecordSequence are durably written.

If a record sequence has been disposed of, or if you pass an invalid argument, exceptions are thrown immediately within this operation. Errors that occurred during an asynchronous flush request, for example, a disk failure during the I/O request, will result in exceptions being thrown when the EndFlush method is called.

Applies to