Type Alias RecordsReadReplyEntry

RecordsReadReplyEntry: {
    data?: Readable;
    initialWrite?: RecordsWriteMessage;
    recordsDelete?: RecordsDeleteMessage;
    recordsWrite?: RecordsWriteMessage;
}

The structure of the entry container property in RecordsReadReplyEntry.

Type declaration

  • Optionaldata?: Readable

    The data stream associated with the record if the records exists (not deleted).

  • OptionalinitialWrite?: RecordsWriteMessage

    The initial write of the record if the returned RecordsWrite message itself is not the initial write or if a RecordsDelete is returned.

  • OptionalrecordsDelete?: RecordsDeleteMessage

    The RecordsDelete if the record is deleted.

  • OptionalrecordsWrite?: RecordsWriteMessage

    The latest RecordsWrite message of the record if record exists (not deleted).