FileRecordSequence.EndFlush(IAsyncResult) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Ends an asynchronous flush operation. This method cannot be inherited.
public:
virtual System::IO::Log::SequenceNumber EndFlush(IAsyncResult ^ result);
public System.IO.Log.SequenceNumber EndFlush (IAsyncResult result);
abstract member EndFlush : IAsyncResult -> System.IO.Log.SequenceNumber
override this.EndFlush : IAsyncResult -> System.IO.Log.SequenceNumber
Public Function EndFlush (result As IAsyncResult) As SequenceNumber
Parameters
- result
- IAsyncResult
A reference to the outstanding asynchronous I/O request.
Returns
The sequence number of the last record written.
Implements
Exceptions
result
is invalid.
End
has already been called for this asynchronous operation.
The request cannot be performed because of an unexpected I/O exception.
The method was called after the sequence has been disposed of.
There is not enough memory to continue the execution of the program.
Remarks
This method blocks until the I/O operation has completed. Errors that occur during an asynchronous flush request, such as a disk failure during the I/O request, become visible when EndFlush is called.
This method must be called exactly once on every IAsyncResult returned by the BeginFlush method.