Package org.h2.store.fs
Interface Recorder
-
- All Known Implementing Classes:
RecoverTester
public interface RecorderA recorder for the recording file system.
-
-
Field Summary
Fields Modifier and Type Field Description static intCREATE_NEW_FILECreate a new file.static intCREATE_TEMP_FILECreate a temporary file.static intDELETEDelete a file.static intOPEN_OUTPUT_STREAMOpen a file output stream.static intRENAMERename a file.static intTRUNCATETruncate the file.static intWRITEWrite to the file.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidlog(int op, java.lang.String fileName, byte[] data, long x)Record the method.
-
-
-
Field Detail
-
CREATE_NEW_FILE
static final int CREATE_NEW_FILE
Create a new file.- See Also:
- Constant Field Values
-
CREATE_TEMP_FILE
static final int CREATE_TEMP_FILE
Create a temporary file.- See Also:
- Constant Field Values
-
DELETE
static final int DELETE
Delete a file.- See Also:
- Constant Field Values
-
OPEN_OUTPUT_STREAM
static final int OPEN_OUTPUT_STREAM
Open a file output stream.- See Also:
- Constant Field Values
-
RENAME
static final int RENAME
Rename a file. The file name contains the source and the target file separated with a colon.- See Also:
- Constant Field Values
-
TRUNCATE
static final int TRUNCATE
Truncate the file.- See Also:
- Constant Field Values
-
WRITE
static final int WRITE
Write to the file.- See Also:
- Constant Field Values
-
-