Interface RequestSettings
- Namespace
- MassTransit
- Assembly
- MassTransit.Abstractions.dll
The request settings include the address of the request handler, as well as the timeout to use for requests.
public interface RequestSettings
Properties
ServiceAddress
The endpoint address of the service that handles the request
Uri ServiceAddress { get; }
Property Value
- Uri
TimeToLive
If specified, the TimeToLive is set on the outgoing request
TimeSpan? TimeToLive { get; }
Property Value
Timeout
The timeout period before the request times out
TimeSpan Timeout { get; }