dio_retry 0.1.9-beta copy "dio_retry: ^0.1.9-beta" to clipboard
dio_retry: ^0.1.9-beta copied to clipboard

A starting point for Dart libraries or applications.

dio_retry #

A plugin for dio that retries failed requests.

Usage #

import 'package:dio_retry/dio_retry.dart';
copied to clipboard

Basic configuration

final dio = Dio()
  ..interceptors.add(RetryInterceptor());
copied to clipboard

Global retry options

final dio = Dio()
  ..interceptors.add(RetryInterceptor(
    options: const RetryOptions(
      retries: 3, // Number of retries before a failure
      retryInterval: const Duration(seconds: 1), // Interval between each retry
      retryEvaluator: (error) => error.type != DioErrorType.CANCEL && error.type != DioErrorType.RESPONSE, // Evaluating if a retry is necessary regarding the error. It is a good candidate for updating authentication token in case of a unauthorized error (be careful with concurrency though)
    )
  )
);
copied to clipboard

Sending a request with options

final response = await dio.get("http://www.flutter.dev", options: Options(
    extra: RetryOptions(
      retryInterval: const Duration(seconds: 10),
    ).toExtra(),
  ));
copied to clipboard

Sending a request without retry

final response = await dio.get("http://www.flutter.dev", options: Options(
    extra: RetryOptions.noRetry().toExtra(),
  ));
copied to clipboard

Logging retry operations

final dio = Dio()
  ..interceptors.add(RetryInterceptor(logger: Logger("Retry")));
copied to clipboard

Features and bugs #

Please file issues.

21
likes
40
points
59
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.17 - 2025.04.01

A starting point for Dart libraries or applications.

Repository (GitHub)

License

MIT (license)

Dependencies

dio, logging, meta

More

Packages that depend on dio_retry