Edit

Share via


RecordAppendOptions Enum

Definition

Specifies how records are appended.

This enumeration supports a bitwise combination of its member values.

C#
[System.Flags]
public enum RecordAppendOptions
Inheritance
RecordAppendOptions
Attributes

Fields

Name Value Description
None 0

Data is written lazily.

ForceAppend 1

The record sequence should begin the process of flushing internal buffers after this record is appended. This does not indicate that the record should be durably written before the Append operation completes. To get that behavior, specify the ForceFlush flag.

ForceFlush 2

The record sequence should flush any internal buffers after this record is appended. When the Append operation completes, the specified record has been durably written.

Examples

The following example shows how to use this enumeration with the Append method to append a record to a log sequence.

C#
    // Append records. Appending three records.
    public void AppendRecords()
    {
        Console.WriteLine("Appending Log Records...");
        SequenceNumber previous = SequenceNumber.Invalid;

        previous = sequence.Append(CreateData("Hello World!"), SequenceNumber.Invalid, SequenceNumber.Invalid, RecordAppendOptions.ForceFlush);
        previous = sequence.Append(CreateData("This is my first Logging App"), SequenceNumber.Invalid, SequenceNumber.Invalid, RecordAppendOptions.ForceFlush);
        previous = sequence.Append(CreateData("Using LogRecordSequence..."), SequenceNumber.Invalid, SequenceNumber.Invalid, RecordAppendOptions.ForceFlush);

        Console.WriteLine("Done...");
    }

Applies to

Product Versions
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1