Interface IRawInboundEnvelope
Wraps the message that is being consumed from an inbound endpoint.
Namespace: Silverback.Messaging.Messages
Assembly: Silverback.Integration.dll
Syntax
public interface IRawInboundEnvelope : IRawBrokerEnvelope
Properties
| Improve this doc View sourceActualEndpointDisplayName
Gets the name to actual source endpoint (ActualEndpointName) to be displayed in the human-targeted output (e.g. logs, health checks result, etc.).
Declaration
string ActualEndpointDisplayName { get; }
Property Value
Type | Description |
---|---|
string |
ActualEndpointName
Gets the name of the actual source endpoint (in case the Endpoint
configuration points to
multiple endpoints, for example if consuming multiple topics with a
single KafkaConsumer
).
Declaration
string ActualEndpointName { get; }
Property Value
Type | Description |
---|---|
string |
BrokerMessageIdentifier
Gets the message identifier on the message broker (the Kafka offset or similar).
Declaration
IBrokerMessageIdentifier BrokerMessageIdentifier { get; }
Property Value
Type | Description |
---|---|
IBrokerMessageIdentifier |
Endpoint
Gets the source endpoint.
Declaration
IConsumerEndpoint Endpoint { get; }
Property Value
Type | Description |
---|---|
IConsumerEndpoint |