C# Class Lucene.Net.Store.Azure.AzureIndexOutput

Implements IndexOutput semantics for a write/append only file
Inheritance: IndexOutput
ファイルを表示 Open project: azure-contrib/AzureDirectory Class Usage Examples

Public Methods

Method Description
AzureIndexOutput ( AzureDirectory azureDirectory, ICloudBlob blob ) : System
Flush ( ) : void
Seek ( long pos ) : void
WriteByte ( byte b ) : void
WriteBytes ( byte b, int length ) : void
WriteBytes ( byte b, int offset, int length ) : void

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Private Methods

Method Description
CompressStream ( string fileName, long originalLength ) : MemoryStream

Method Details

AzureIndexOutput() public method

public AzureIndexOutput ( AzureDirectory azureDirectory, ICloudBlob blob ) : System
azureDirectory AzureDirectory
blob ICloudBlob
return System

Dispose() protected method

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

Flush() public method

public Flush ( ) : void
return void

Seek() public method

public Seek ( long pos ) : void
pos long
return void

WriteByte() public method

public WriteByte ( byte b ) : void
b byte
return void

WriteBytes() public method

public WriteBytes ( byte b, int length ) : void
b byte
length int
return void

WriteBytes() public method

public WriteBytes ( byte b, int offset, int length ) : void
b byte
offset int
length int
return void