Class ConsumerEndpoint
The endpoint (e.g. the topic) from which the message was consumed.
Inheritance
ConsumerEndpoint
Assembly: Silverback.Integration.dll
Syntax
public abstract record ConsumerEndpoint : Endpoint, IEquatable<Endpoint>, IEquatable<ConsumerEndpoint>
Constructors
ConsumerEndpoint(ConsumerEndpoint)
The endpoint (e.g. the topic) from which the message was consumed.
Declaration
protected ConsumerEndpoint(ConsumerEndpoint original)
Parameters
ConsumerEndpoint(string, ConsumerEndpointConfiguration)
Declaration
protected ConsumerEndpoint(string rawName, ConsumerEndpointConfiguration configuration)
Parameters
Properties
Configuration
Gets the consumer endpoint configuration.
Declaration
public ConsumerEndpointConfiguration Configuration { get; }
Property Value
EqualityContract
The endpoint (e.g. the topic) from which the message was consumed.
Declaration
protected override Type EqualityContract { get; }
Property Value
Overrides
Methods
Equals(ConsumerEndpoint?)
The endpoint (e.g. the topic) from which the message was consumed.
Declaration
public virtual bool Equals(ConsumerEndpoint? other)
Parameters
Returns
Equals(Endpoint?)
The endpoint (e.g. the topic) from which the message was consumed.
Declaration
public override sealed bool Equals(Endpoint? other)
Parameters
Returns
Overrides
Equals(object?)
The endpoint (e.g. the topic) from which the message was consumed.
Declaration
public override bool Equals(object? obj)
Parameters
| Type |
Name |
Description |
| object |
obj |
|
Returns
Overrides
GetHashCode()
The endpoint (e.g. the topic) from which the message was consumed.
Declaration
public override int GetHashCode()
Returns
Overrides
PrintMembers(StringBuilder)
The endpoint (e.g. the topic) from which the message was consumed.
Declaration
protected override bool PrintMembers(StringBuilder builder)
Parameters
Returns
Overrides
ToString()
The endpoint (e.g. the topic) from which the message was consumed.
Declaration
public override string ToString()
Returns
Overrides
Operators
operator ==(ConsumerEndpoint?, ConsumerEndpoint?)
The endpoint (e.g. the topic) from which the message was consumed.
Declaration
public static bool operator ==(ConsumerEndpoint? left, ConsumerEndpoint? right)
Parameters
Returns
operator !=(ConsumerEndpoint?, ConsumerEndpoint?)
The endpoint (e.g. the topic) from which the message was consumed.
Declaration
public static bool operator !=(ConsumerEndpoint? left, ConsumerEndpoint? right)
Parameters
Returns
Implements