Queue
老邱 authored at 2016-12-20 11:46:24
840.00 B
X
using System;

namespace NewLife.Queue.Protocols.Brokers.Requests
{
    [Serializable]
    public class SetQueueNextConsumeOffsetRequest
    {
        public string ConsumerGroup { get; private set; }
        public string Topic { get; private set; }
        public int QueueId { get; private set; }
        public long NextOffset { get; private set; }

        public SetQueueNextConsumeOffsetRequest(string consumerGroup, string topic, int queueId, long nextOffset)
        {
            ConsumerGroup = consumerGroup;
            Topic = topic;
            QueueId = queueId;
            NextOffset = nextOffset;
        }

        public override string ToString()
        {
            return string.Format("[ConsumerGroup:{0}, Topic:{1}, QueueId:{2}, NextOffset:{3}]", ConsumerGroup, Topic, QueueId, NextOffset);
        }
    }
}