ServiceStack.Redis.RedisQueueCompletableOperation.CompleteLongQueuedCommand C# (CSharp) Метод

CompleteLongQueuedCommand() публичный Метод

public CompleteLongQueuedCommand ( Func longReadCommand ) : void
longReadCommand Func
Результат void
        public virtual void CompleteLongQueuedCommand(Func<long> longReadCommand)
        {
            //AssertCurrentOperation();
            // this can happen when replaying pipeline/transaction
            if (CurrentQueuedOperation == null) return;

            CurrentQueuedOperation.LongReadCommand = longReadCommand;
            AddCurrentQueuedOperation();
        }