您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
18 行
675 B
18 行
675 B
namespace NetworkCompression
|
|
{
|
|
public interface IOutputStream
|
|
{
|
|
void Initialize(NetworkCompressionModel model, byte[] buffer, int bufferOffset, NetworkCompressionCapture capture);
|
|
void WriteRawBits(uint value, int numbits);
|
|
unsafe void WriteRawBytes(byte* value, int count);
|
|
|
|
void WritePackedNibble(uint value, int context);
|
|
void WritePackedUInt(uint value, int context);
|
|
void WritePackedIntDelta(int value, int baseline, int context);
|
|
void WritePackedUIntDelta(uint value, uint baseline, int context);
|
|
|
|
int GetBitPosition2();
|
|
NetworkCompressionModel GetModel();
|
|
int Flush();
|
|
}
|
|
}
|