DotNetWorkQueue.Transport.PostgreSQL.Basic.Command.RollbackMessageCommand.RollbackMessageCommand C# (CSharp) Method

RollbackMessageCommand() public method

Initializes a new instance of the RollbackMessageCommand class.
public RollbackMessageCommand ( System.DateTime lastHeartBeat, long queueId, System.TimeSpan increaseQueueDelay ) : System
lastHeartBeat System.DateTime The last heart beat.
queueId long The queue identifier.
increaseQueueDelay System.TimeSpan The increase queue delay.
return System
        public RollbackMessageCommand(DateTime? lastHeartBeat, long queueId, TimeSpan? increaseQueueDelay)
        {
            LastHeartBeat = lastHeartBeat;
            QueueId = queueId;
            IncreaseQueueDelay = increaseQueueDelay;
        }
        /// <summary>
RollbackMessageCommand