trq_add_retries()

trq_add_retries()#

Increments the retry count of the given queue message. This function updates the retry counter associated with the specified q_msg.

Prototype

void trq_add_retries(
    q_msg msg,
    int    retries
);

Parameters

Key

Type

Description

msg

q_msg

The queue message whose retry count will be incremented.

retries

int

The number of retries to add to the message.


Return Value

This function does not return a value.

Notes

Use trq_test_retries() to check if the retry limit has been reached.

Prototype

// Not applicable in JS

Prototype

# Not applicable in Python
Examples
// TODO C examples
// TODO JS examples
# TODO Python examples