优化ETL过滤模块
大石头 authored at 2017-08-29 17:11:46
206.00 B
X
using System.IO;

namespace NewLife.Queue.Storage
{
    public interface ILogRecord
    {
        void WriteTo(long logPosition, BinaryWriter writer);
        void ReadFrom(byte[] recordBuffer);
    }
}