C# 클래스 Deveel.Data.Store.FileStoreData

A data store that is backed by a file located at the path given.
상속: IStoreData
파일 보기 프로젝트 열기: deveel/deveeldb 1 사용 예제들

공개 메소드들

메소드 설명
Close ( ) : void
Delete ( ) : bool
Dispose ( ) : void
FileStoreData ( IFileSystem fileSystem, string filePath ) : System
Flush ( ) : void
Open ( bool readOnly ) : void
Read ( long position, byte buffer, int offset, int length ) : int
SetLength ( long value ) : void
Write ( long position, byte buffer, int offset, int length ) : void

비공개 메소드들

메소드 설명
Dispose ( bool disposing ) : void

메소드 상세

Close() 공개 메소드

public Close ( ) : void
리턴 void

Delete() 공개 메소드

public Delete ( ) : bool
리턴 bool

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void

FileStoreData() 공개 메소드

public FileStoreData ( IFileSystem fileSystem, string filePath ) : System
fileSystem IFileSystem
filePath string
리턴 System

Flush() 공개 메소드

public Flush ( ) : void
리턴 void

Open() 공개 메소드

public Open ( bool readOnly ) : void
readOnly bool
리턴 void

Read() 공개 메소드

public Read ( long position, byte buffer, int offset, int length ) : int
position long
buffer byte
offset int
length int
리턴 int

SetLength() 공개 메소드

public SetLength ( long value ) : void
value long
리턴 void

Write() 공개 메소드

public Write ( long position, byte buffer, int offset, int length ) : void
position long
buffer byte
offset int
length int
리턴 void