ServiceStack.Redis.RedisNativeClient.DebugSleep C# (CSharp) Method

DebugSleep() public method

public DebugSleep ( double durationSecs ) : void
durationSecs double
return void
        public void DebugSleep(double durationSecs)
        {
            SendExpectSuccess(Commands.Debug, Commands.Sleep, durationSecs.ToUtf8Bytes());
        }
RedisNativeClient