01: /*
02: * Copyright 2004-2008 H2 Group. Licensed under the H2 License, Version 1.0
03: * (http://h2database.com/html/license.html).
04: * Initial Developer: H2 Group
05: */
06: package org.h2.log;
07:
08: /**
09: * Represents a record in the transaction log.
10: */
11: public class LogRecord {
12: LogFile log;
13: int logRecordId;
14: int sessionId;
15:
16: LogRecord(LogFile log, int logRecordId, int sessionId) {
17: this.log = log;
18: this.logRecordId = logRecordId;
19: this.sessionId = sessionId;
20: }
21: }
|