Enum ObserverFlags
Flags for Connection.AddMatchAsync that the message observer behavior.
[Flags]
public enum ObserverFlags
Fields
EmitOnConnectionDispose = 1Emit a completion exception when the connection is disposed.
Use IsConnectionDisposed(Exception) to check for this exception.
EmitOnDispose = EmitOnConnectionDispose | EmitOnObserverDisposeEmit a completion exception when either the connection or observer is disposed.
Use IsDisposed(Exception) to check for this exception.
EmitOnObserverDispose = 2Emit a completion exception when the observer is disposed.
Use IsObserverDisposed(Exception) to check for this exception.
NoSubscribe = 4Do not subscribe to the signal on the bus.
None = 0No flags are set.