Skip to content

Allow retry mechanism on error for a particular function within set of composed functions.

Allow retry mechanism of a function in case the function returns specific error code. Only the failed function should have ability to retry

E.g syntax could be ```rust let result = compose!(add_10 -> add_100 -> add_10 -> retry_on_error_code("E101", 3, add_100) -> withArgs(10));

Edited by senthil veerabahu