Uses of Class
org.axiondb.io.BufferedDataOutputStream

Packages that use BufferedDataOutputStream
org.axiondb.engine.tables   
org.axiondb.io   
 

Uses of BufferedDataOutputStream in org.axiondb.engine.tables
 

Methods in org.axiondb.engine.tables that return BufferedDataOutputStream
protected  BufferedDataOutputStream BaseDiskTable.getOutputStream()
           
 

Methods in org.axiondb.engine.tables with parameters of type BufferedDataOutputStream
protected abstract  void BaseFlatfileTable.writeHeader(BufferedDataOutputStream data2)
           
protected  void DelimitedFlatfileTable.writeHeader(BufferedDataOutputStream dataFile)
           
protected  void FixedWidthFlatfileTable.writeHeader(BufferedDataOutputStream dataFile)
           
protected  void TaggedEBCDICTable.writeHeader(BufferedDataOutputStream dataFile)
           
protected abstract  void BaseDiskTable.writeRow(BufferedDataOutputStream buffer, Row row)
           
protected  void DelimitedFlatfileTable.writeRow(BufferedDataOutputStream buffer, Row row)
           
protected  void DiskTable.writeRow(BufferedDataOutputStream out, Row row)
           
protected  void FixedWidthFlatfileTable.writeRow(BufferedDataOutputStream out, Row row)
           
protected  void TaggedEBCDICTable.writeRow(BufferedDataOutputStream out, Row row)
           
 

Uses of BufferedDataOutputStream in org.axiondb.io
 

Methods in org.axiondb.io that return BufferedDataOutputStream
 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.
 

Methods in org.axiondb.io with parameters of type BufferedDataOutputStream
 void AxionFileSystem.writeUnsignedInt(BufferedDataOutputStream out, long offset, int value)
          Updates an UnsignedInt value to a file.