Table of Contents

Interface IRequestSendEndpoint<T>

Namespace
MassTransit
Assembly
MassTransit.Abstractions.dll
public interface IRequestSendEndpoint<T> where T : class

Type Parameters

T

Methods

Send(Guid, object, IPipe<SendContext<T>>, CancellationToken)

Task<T> Send(Guid requestId, object values, IPipe<SendContext<T>> pipe, CancellationToken cancellationToken)

Parameters

requestId Guid
values object
pipe IPipe<SendContext<T>>
cancellationToken CancellationToken

Returns

Task<T>

Send(Guid, T, IPipe<SendContext<T>>, CancellationToken)

Task Send(Guid requestId, T message, IPipe<SendContext<T>> pipe, CancellationToken cancellationToken)

Parameters

requestId Guid
message T
pipe IPipe<SendContext<T>>
cancellationToken CancellationToken

Returns

Task