Giter VIP home page Giter VIP logo

dalwadi2 / retrofitretry Goto Github PK

View Code? Open in Web Editor NEW
19.0 2.0 7.0 202 KB

Some times because of Server problem we are facing A Network Fluctuatuion while calling the API. To resolve that problem I've made a Simple lightweight library which provides Functionality to Retry that API call at time of network error. Take a look and Feel free to Contribute.

License: Apache License 2.0

Java 100.00%
retrofit2 retry-policy android network rest-api android-networking api-integration okhttp3 volley retry-strategies

retrofitretry's Introduction

RetrofitRetry

Android Arsenal API Maven Central License

Twitter Follow

Releases:

Current release: 1.3.0.

You can see all the library releases here.

How to use this lib in your project:

Gradle

compile 'io.github.dalwadi2:retrofit-retry:1.3.0'

or

Step 1. Add the JitPack repository to your build file Add it in your root build.gradle at the end of repositories:

allprojects {
	repositories {
		maven { url 'https://jitpack.io' }
	}
}

Step 2. Add the dependency

dependencies {
	compile 'com.github.dalwadi2:RetrofitRetry:v1.2'
}

Maven

<dependency>
    <groupId>io.github.dalwadi2</groupId>
    <artifactId>retrofit-retry</artifactId>
    <version>1.3.0</version>
</dependency>

Sample

  • First you have to Create Object of your ApiInterface like below :
ApiInterface apiService =
                        ApiClient.getClient().create(ApiInterface.class);
Call<Sample> responseCall = apiService.VIDEO_NOTY_CALL();
  • After then you have to Implement this method (Here Default Retry Count is 0)
 RetryHelper.enqueueRetry(responseCall, 3, new CustomCallback<Sample>() {
                   @Override
                    public void onFailResponse(int errorCode, Call<Sample> call, Response<Sample> response) {
                        progress.hideDialog();
                        Log.e(TAG, "onFailResponse() called with: errorCode = [" + errorCode + "], call = [" + call + "], response = [" + response + "]");
                        Toast.makeText(MainActivity.this, "Failed After Retry", Toast.LENGTH_SHORT).show();
                    }

                    @Override
                    public void onResponse(Call<Sample> call, Response<Sample> response) {
                        // Code of Success
                    }

                    @Override
                    public void onFailure(Call<Sample> call, Throwable t) {
                        // Code of Failure
                    }
                });
  • Now you can also specify the your own success code.
   RetryHelper.setSuccessCode(200);

PS: If you are using this library, you don't have to add extra Retrofit 2.0 Repository. I already added bellow Repos in this Library.

compile 'com.squareup.retrofit2:retrofit:2.2.0'
compile 'com.squareup.retrofit2:converter-gson:2.0.2'

proguard-rules.pro

-dontnote retrofit2.Platform
-dontwarn retrofit2.Platform$Java8
-keepattributes Signature
-keepattributes Exceptions
-dontwarn okio.**

Todos

  • Put listener for Every Retries
  • Put method for Each fail Response

Feel free to Contribute

License

Copyright 2017-18 Harsh Dalwadi

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

retrofitretry's People

Contributors

dalwadi2 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

retrofitretry's Issues

Not identify JSON data

Hi

How to get the json response data in this method in below sample code.


 @Override
                    public void onResponse(Call<Sample> call, Response<Sample> response) {
                        progress.hideDialog();

                        System.out.println("response"+call.request().body().toString());

                        if (!response.body().isError()) {
                            Toast.makeText(MainActivity.this, "Success", Toast.LENGTH_SHORT).show();
                        } else {
                            Toast.makeText(MainActivity.this, response.body().getMessage(), Toast.LENGTH_SHORT).show();
                        }
                    }

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.