ExchangeSendOptions: {
    expectAckOnly?: boolean;
    expectedProcessingTimeMs?: number;
    includeAcknowledgeMessageId?: number;
    requiresAck?: boolean;
}

Type declaration

  • OptionalexpectAckOnly?: boolean

    The response to this send should be an ack only and no StatusResponse or such. If a StatusResponse is returned then this is handled as error.

  • OptionalexpectedProcessingTimeMs?: number

    Defined an expected processing time by the responder for the message. This is used to calculate the final timeout for responses together with the normal retransmission logic when MRP is used.

  • OptionalincludeAcknowledgeMessageId?: number

    Use the provided acknowledge MessageId instead checking the latest to send one

  • OptionalrequiresAck?: boolean

    Allows to specify if the send message requires to be acknowledged by the receiver or not.