Struct MessageBrokerBindListenerResult
- Namespace
- LfrlAnvil.MessageBroker.Client
- Assembly
- LfrlAnvil.MessageBroker.Client.dll
Represents the result of binding a client to a channel as a listener.
public readonly struct MessageBrokerBindListenerResult
- Inherited Members
Properties
AlreadyBound
Specifies whether request to the server has been cancelled because the client is already locally bound as listener to the channel.
public bool AlreadyBound { get; }
Property Value
ChannelCreated
Specifies whether a new channel has been created by the server.
public bool ChannelCreated { get; }
Property Value
Listener
Listener bound to the channel.
public MessageBrokerListener Listener { get; }
Property Value
QueueCreated
Specifies whether a new queue has been created by the server.
public bool QueueCreated { get; }
Property Value
Methods
ToString()
Returns a string representation of this MessageBrokerBindListenerResult instance.
[Pure]
public override string ToString()
Returns
- string
String representation.