移除项目
老邱 authored at 2016-12-23 09:10:38
285.00 B
X
namespace NewLife.Queue.Storage
{
    public interface IStream
    {
        long Length { get; }
        long Position { get; set; }
        void Write(byte[] buffer, int offset, int count);
        void Flush();
        void SetLength(long value);
        void Dispose();
    }
}