Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request refactors the HTTP transport layer to improve extensibility and consistency, mainly by introducing the
IWolverineHttpTransportClientinterface, consolidating content type constants, and supporting both batch and inline sending modes. It also updates tests and documentation to reflect these changes.Transport Client Improvements
IWolverineHttpTransportClientinterface for sending messages, allowing custom implementations and improving dependency injection flexibility. The defaultWolverineHttpTransportClientnow implements this interface. [1] [2]Content Type Consistency
EnvelopeContentType,EnvelopeBatchContentType) toHttpTransport, ensuring a single source of truth and updated all usages accordingly. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10]Endpoint and Sender Enhancements
InlineHttpSenderclass, and updatedHttpEndpointto select the appropriate sender based on mode. [1] [2]HttpEndpointto allow all endpoint modes, including inline and buffered.SupportsNativeScheduledSendonHttpEndpointand enabled configuration via the publishing extension method. [1] Fb95d5f0L13R13, [2]Documentation and Sample Updates
Testing Updates
HttpEndpointcovering sender creation, listener building, and mode support.