프로퍼티 | 타입 | 설명 | |
---|---|---|---|
Buffer | byte[] |
메소드 | 설명 | |
---|---|---|
BufferSize ( |
Returns default buffer sizes for the given IOContext
|
|
BufferedIndexInput ( string resourceDesc ) : System | ||
BufferedIndexInput ( string resourceDesc, |
||
BufferedIndexInput ( string resourceDesc, int bufferSize ) : System |
Inits BufferedIndexInput with a specific bufferSize
|
|
Clone ( ) : object | ||
ReadByte ( ) : byte | ||
ReadBytes ( byte b, int offset, int len ) : void | ||
ReadBytes ( byte b, int offset, int len, bool useBuffer ) : void | ||
ReadInt ( ) : int | ||
ReadLong ( ) : long | ||
ReadShort ( ) : short | ||
ReadVInt ( ) : int | ||
ReadVLong ( ) : long | ||
Seek ( long pos ) : void |
메소드 | 설명 | |
---|---|---|
FlushBuffer ( Lucene.Net.Store.IndexOutput @out, long numBytes ) : int |
Flushes the in-memory buffer to the given output, copying at most NOTE: this method does not refill the buffer, however it does advance the buffer position.
|
|
NewBuffer ( byte newBuffer ) : void | ||
ReadInternal ( byte b, int offset, int length ) : void |
Expert: implements buffer refill. Reads bytes from the current position in the input.
|
|
SeekInternal ( long pos ) : void |
Expert: implements seek. Sets current position in this file, where the next #readInternal(byte[],int,int) will occur.
|
메소드 | 설명 | |
---|---|---|
CheckBufferSize ( int bufferSize ) : void | ||
Refill ( ) : void |
public static BufferSize ( |
||
context | ||
리턴 | int |
public BufferedIndexInput ( string resourceDesc ) : System | ||
resourceDesc | string | |
리턴 | System |
public BufferedIndexInput ( string resourceDesc, |
||
resourceDesc | string | |
context | ||
리턴 | System |
public BufferedIndexInput ( string resourceDesc, int bufferSize ) : System | ||
resourceDesc | string | |
bufferSize | int | |
리턴 | System |
protected FlushBuffer ( Lucene.Net.Store.IndexOutput @out, long numBytes ) : int | ||
@out | Lucene.Net.Store.IndexOutput | |
numBytes | long | |
리턴 | int |
public final ReadBytes ( byte b, int offset, int len ) : void | ||
b | byte | |
offset | int | |
len | int | |
리턴 | void |
public final ReadBytes ( byte b, int offset, int len, bool useBuffer ) : void | ||
b | byte | |
offset | int | |
len | int | |
useBuffer | bool | |
리턴 | void |
protected abstract ReadInternal ( byte b, int offset, int length ) : void | ||
b | byte | the array to read bytes into |
offset | int | the offset in the array to start storing bytes |
length | int | the number of bytes to read |
리턴 | void |