Struct SendTuple<T>
- Namespace
- MassTransit
- Assembly
- MassTransit.Abstractions.dll
Combines a message and a pipe which can be used to send/publish the message
public readonly struct SendTuple<T> where T : class
Type Parameters
T
- Inherited Members
Constructors
SendTuple(T)
public SendTuple(T message)
Parameters
message
T
SendTuple(T, IPipe<SendContext<T>>?)
public SendTuple(T message, IPipe<SendContext<T>>? pipe)
Parameters
message
Tpipe
IPipe<SendContext<T>>
Fields
Message
public readonly T Message
Field Value
- T
Pipe
public readonly IPipe<SendContext<T>> Pipe
Field Value
- IPipe<SendContext<T>>
Methods
Deconstruct(out T, out IPipe<SendContext<T>>)
public void Deconstruct(out T message, out IPipe<SendContext<T>> pipe)
Parameters
message
Tpipe
IPipe<SendContext<T>>