优化ETL过滤模块
大石头 authored at 2017-08-29 17:11:46
283.00 B
X
using System.Collections.Generic;
using NewLife.Queue.Storage;

namespace NewLife.Queue.Broker.DeleteMessageStrategies
{
    public interface IDeleteMessageStrategy
    {
        IEnumerable<Chunk> GetAllowDeleteChunks(ChunkManager chunkManager, long maxMessagePosition);
    }
}