Package | Description |
---|---|
org.axiondb.engine.tables | |
org.axiondb.io |
Modifier and Type | Method and Description |
---|---|
protected BufferedDataOutputStream |
BaseDiskTable.getOutputStream() |
Modifier and Type | Method and Description |
---|---|
protected abstract void |
BaseFlatfileTable.writeHeader(BufferedDataOutputStream data2) |
protected void |
TaggedEBCDICTable.writeHeader(BufferedDataOutputStream dataFile) |
protected void |
DelimitedFlatfileTable.writeHeader(BufferedDataOutputStream dataFile) |
protected void |
FixedWidthFlatfileTable.writeHeader(BufferedDataOutputStream dataFile) |
protected abstract void |
BaseDiskTable.writeRow(BufferedDataOutputStream buffer,
Row row) |
protected void |
TaggedEBCDICTable.writeRow(BufferedDataOutputStream out,
Row row) |
protected void |
DiskTable.writeRow(BufferedDataOutputStream out,
Row row) |
protected void |
DelimitedFlatfileTable.writeRow(BufferedDataOutputStream buffer,
Row row) |
protected void |
FixedWidthFlatfileTable.writeRow(BufferedDataOutputStream out,
Row row) |
Modifier and Type | Method and Description |
---|---|
BufferedDataOutputStream |
AxionFileSystem.createBufferedDOS(java.io.File file)
create a new file and wrap wrap the stream with BufferedDataOutputStream which
improves perfermance significantly.
|
BufferedDataOutputStream |
AxionFileSystem.openBufferedDOS(java.io.File file,
long startPos)
Open a outputsteam and points the file pointer to a given start position in the
file.
|
BufferedDataOutputStream |
AxionFileSystem.openBufferedDOSAppend(java.io.File file,
int bufferSize)
Open file in append mode, position will be set to the end of file.
|
Modifier and Type | Method and Description |
---|---|
void |
AxionFileSystem.writeUnsignedInt(BufferedDataOutputStream out,
long offset,
int value)
Updates an UnsignedInt value to a file.
|