移除项目
老邱 authored at 2016-12-23 09:10:38
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);
    }
}