Res.Client.Internal.Queues.Messages.AcknowledgeQueueAndFetchNextRequest.AcknowledgeQueueAndFetchNextRequest C# (CSharp) Method

AcknowledgeQueueAndFetchNextRequest() public method

public AcknowledgeQueueAndFetchNextRequest ( string context, string queueId, string subscriberId, long allocationId, int allocationBatchSize, int allocationTimeoutInMilliseconds ) : System
context string
queueId string
subscriberId string
allocationId long
allocationBatchSize int
allocationTimeoutInMilliseconds int
return System
        public AcknowledgeQueueAndFetchNextRequest(string context, string queueId, string subscriberId, long? allocationId, int allocationBatchSize, int allocationTimeoutInMilliseconds)
        {
            _context = context;
            _queueId = queueId;
            _subscriberId = subscriberId;
            _allocationId = allocationId;
            _allocationBatchSize = allocationBatchSize;
            _allocationTimeoutInMilliseconds = allocationTimeoutInMilliseconds;
        }
AcknowledgeQueueAndFetchNextRequest