C# Class Deveel.Data.Store.SingleFileStore

Inheritance: StoreBase
Mostrar archivo Open project: deveel/deveeldb Class Usage Examples

Private Properties

Property Type Description
Create void
SingleFileStore System
WriteTo void

Public Methods

Method Description
Lock ( ) : void
Unlock ( ) : void

Protected Methods

Method Description
CloseStore ( ) : void
Dispose ( bool disposing ) : void
OpenStore ( bool readOnly ) : void
Read ( long offset, byte buffer, int index, int length ) : int
SetDataAreaSize ( long length ) : void
Write ( long offset, byte buffer, int index, int length ) : void

Private Methods

Method Description
Create ( int bufferSize ) : void
SingleFileStore ( SingleFileStoreSystem system, string name, int id ) : System
WriteTo ( Stream stream ) : void

Method Details

CloseStore() protected method

protected CloseStore ( ) : void
return void

Dispose() protected method

protected Dispose ( bool disposing ) : void
disposing bool
return void

Lock() public method

public Lock ( ) : void
return void

OpenStore() protected method

protected OpenStore ( bool readOnly ) : void
readOnly bool
return void

Read() protected method

protected Read ( long offset, byte buffer, int index, int length ) : int
offset long
buffer byte
index int
length int
return int

SetDataAreaSize() protected method

protected SetDataAreaSize ( long length ) : void
length long
return void

Unlock() public method

public Unlock ( ) : void
return void

Write() protected method

protected Write ( long offset, byte buffer, int index, int length ) : void
offset long
buffer byte
index int
length int
return void