Enum ClientFlags
- Namespace
- StackExchange.Redis
- Assembly
- StackExchange.Redis.StrongName.dll
The client flags can be a combination of: O: the client is a slave in MONITOR mode S: the client is a normal slave server M: the client is a master x: the client is in a MULTI/EXEC context b: the client is waiting in a blocking operation i: the client is waiting for a VM I/O (deprecated) d: a watched keys has been modified - EXEC will fail c: connection to be closed after writing entire reply u: the client is unblocked A: connection to be closed ASAP N: no specific flag set
[Flags]
public enum ClientFlags : long
Fields
Blocked = 16
the client is waiting in a blocking operation
CloseASAP = 256
connection to be closed ASAP
Closing = 64
connection to be closed after writing entire reply
Master = 4
the client is a master
None = 0
no specific flag set
Slave = 2
the client is a normal slave server
SlaveMonitor = 1
the client is a slave in MONITOR mode
Transaction = 8
the client is in a MULTI/EXEC context
TransactionDoomed = 32
a watched keys has been modified - EXEC will fail
Unblocked = 128
the client is unblocked