C# Class Journaler.ByteRingBuffer

A circular ring buffer of bytes
显示文件 Open project: odeheurles/Journaler-net Class Usage Examples

Public Methods

Method Description
AsArray ( ) : byte[]

Access the underlying byte array

ByteRingBuffer ( int size ) : System

Create a ByteRingBuffer with a given size

WriteByte ( byte value ) : bool

Write a single byte to the buffer. If this is the last byte written to the buffer the BufferFull event will be raised

WriteBytes ( ArraySegment input ) : bool

Write an array of bytes to the buffer

WriteInt ( int value ) : bool

Write an int to the buffer. If the buffer becomes full during the write the BufferFull will be raised and then the remaining bytes will be written at the begining of the buffer.

WriteLong ( long value ) : bool

Write a long to the buffer If the buffer becomes full during the write the BufferFull will be raised and then the remaining bytes will be written at the begining of the buffer.

this ( int index ) : byte

Read the byte at the given index

Method Details

AsArray() public method

Access the underlying byte array
public AsArray ( ) : byte[]
return byte[]

ByteRingBuffer() public method

Create a ByteRingBuffer with a given size
public ByteRingBuffer ( int size ) : System
size int number of bytes the buffer will contain
return System

WriteByte() public method

Write a single byte to the buffer. If this is the last byte written to the buffer the BufferFull event will be raised
public WriteByte ( byte value ) : bool
value byte the value to write to the buffer
return bool

WriteBytes() public method

Write an array of bytes to the buffer
public WriteBytes ( ArraySegment input ) : bool
input ArraySegment The array of byte to write from
return bool

WriteInt() public method

Write an int to the buffer. If the buffer becomes full during the write the BufferFull will be raised and then the remaining bytes will be written at the begining of the buffer.
public WriteInt ( int value ) : bool
value int the value to write to the buffer
return bool

WriteLong() public method

Write a long to the buffer If the buffer becomes full during the write the BufferFull will be raised and then the remaining bytes will be written at the begining of the buffer.
public WriteLong ( long value ) : bool
value long the value to write to the buffer
return bool

this() public method

Read the byte at the given index
public this ( int index ) : byte
index int index within the buffer
return byte