View Source Retry.Annotation (retry v0.18.0)
A @retry annotation that will retry the function according to the retry settings.
Examples
use Retry.Annotation
@retry with: constant_backoff(100) |> Stream.take(10)
def some_func(arg) do
# ...
end
A @retry annotation that will retry the function according to the retry settings.
Examples
use Retry.Annotation
@retry with: constant_backoff(100) |> Stream.take(10)
def some_func(arg) do
# ...
end