रेट्रोफिट लाइब्रेरी में टाइमआउट कैसे सेट करें?


180

मैं अपने ऐप में Retrofit लाइब्रेरी का उपयोग कर रहा हूं, और मैं 60 सेकंड का समय निर्धारित करना चाहता हूं। क्या Retrofit के पास ऐसा करने का कोई तरीका है?

मैं इस तरह से रेट्रोफिट सेट करता हूं:

RestAdapter restAdapter = new RestAdapter.Builder()
    .setServer(BuildConfig.BASE_URL)
    .setConverter(new GsonConverter(gson))
    .build();

मैं टाइमआउट कैसे सेट कर सकता हूं?

जवाबों:


320

आप अंतर्निहित HTTP क्लाइंट पर टाइमआउट सेट कर सकते हैं। यदि आप क्लाइंट निर्दिष्ट नहीं करते हैं, तो रेट्रोफिट डिफ़ॉल्ट कनेक्ट और टाइमआउट पढ़ने के साथ एक बना देगा। अपने स्वयं के टाइमआउट सेट करने के लिए, आपको अपने स्वयं के क्लाइंट को कॉन्फ़िगर करना होगा और इसे आपूर्ति करना होगा RestAdapter.Builder

एक विकल्प स्क्वायर से भी OkHttp क्लाइंट का उपयोग करना है ।

1. पुस्तकालय निर्भरता जोड़ें

बिल्ड.ग्रेड में, इस लाइन को शामिल करें:

compile 'com.squareup.okhttp:okhttp:x.x.x'

x.x.xपुस्तकालय का वांछित संस्करण कहां है।

2. क्लाइंट सेट करें

उदाहरण के लिए, यदि आप 60 सेकंड का समय निर्धारित करना चाहते हैं, तो संस्करण 2 से पहले रिट्रोफिट के लिए और संस्करण 3 से पहले Okhttp पर करें (नए संस्करण के लिए, इस संस्करण को देखें ):

public RestAdapter providesRestAdapter(Gson gson) {
    final OkHttpClient okHttpClient = new OkHttpClient();
    okHttpClient.setReadTimeout(60, TimeUnit.SECONDS);
    okHttpClient.setConnectTimeout(60, TimeUnit.SECONDS);

    return new RestAdapter.Builder()
        .setEndpoint(BuildConfig.BASE_URL)
        .setConverter(new GsonConverter(gson))
        .setClient(new OkClient(okHttpClient))
        .build();
}

EDIT 1

Okhttp संस्करणों के लिए 3.x.x, आपको इस तरह निर्भरता निर्धारित करनी होगी:

compile 'com.squareup.okhttp3:okhttp:x.x.x'

और बिल्डर पैटर्न का उपयोग करके क्लाइंट सेट करें:

final OkHttpClient okHttpClient = new OkHttpClient.Builder()
        .readTimeout(60, TimeUnit.SECONDS)
        .connectTimeout(60, TimeUnit.SECONDS)
        .build();

Timeouts में अधिक जानकारी


EDIT 2

चूंकि रिट्रेडिट संस्करण 2.x.xबिल्डर पैटर्न का भी उपयोग करता है, इसलिए ऊपर दिए गए रिटर्न ब्लॉक को बदल दें:

return new Retrofit.Builder()
    .baseUrl(BuildConfig.BASE_URL)
    .addConverterFactory(GsonConverterFactory.create())
    .client(okHttpClient)
    .build();

यदि मेरी providesRestAdapterविधि जैसे कोड का उपयोग कर रहे हैं , तो विधि वापसी प्रकार को रेट्रोफिट में बदलें ।

रेट्रोफिट 2 में अधिक जानकारी - 1.9 से अपग्रेड गाइड


ps: यदि आपका minSdkVersion 8 से अधिक है, तो आप इसका उपयोग कर सकते हैं TimeUnit.MINUTES:

okHttpClient.setReadTimeout(1, TimeUnit.MINUTES);
okHttpClient.setConnectTimeout(1, TimeUnit.MINUTES);

इकाइयों के बारे में अधिक जानकारी के लिए, टाइम यूनिट देखें ।


मैं okhttp के नए संस्करण में setReadTimeout नहीं देखता, ऐसा करने के किसी भी नए तरीके?
सिंह 89

1
मैं okhttp3 का उपयोग कर रहा हूं, और मेरे लिए मैंने इस कोड का उपयोग किया है: new okhttp3.OkHttpClient ()। NewBuilder (); okHttpClient.readTimeout (60, TimeUnit.SECONDS); okHttpClient.writeTimeout (60, TimeUnit.SECONDS); okHttpClient.connectTimeout (60, TimeUnit.SECONDS); new Retrofit.Builder () .client (okHttpClient.build ())
lucasddaniel

@lucasddaniel आप संपादित किए गए उत्तर का उपयोग कर सकते हैं और अपने रिट्रोफिट बिल्डर को इस तरह के रिट्रीटिट बिल्डर के घोषित नाम को रख सकते हैं 'रेट्रोफिट रिट्रोफिटबुरेलनाम = नया रिट्रोफिट.बुर्टेल ()। ग्राहक (okttpclientName)। निर्माण (); '
f123

1
@Solace मेरे पास थिद विधि है public Gson providesGson() { return new GsonBuilder().create(); }:। तो मैं यह करता हूं Gson gson = module.providesGson(); RestAdapter adapter = module.providesRestAdapter(gson);:। जहाँ मॉड्यूल उचित वर्ग का एक उदाहरण है जिसमें ये सभी विधियाँ हैं
androidevil

1
यदि आप OkHttp3 का उपयोग कर रहे हैं तो आपको टिंल इम्पोर्ट compile 'com.squareup.okhttp3:okhttp:3.x.x'में उपयोग करना होगा जैसे नीचे Teo
NineToeNerd

82

ये जवाब मेरे लिए पुराने थे, इसलिए यहां बताया गया है कि यह कैसे काम करता है।

OkHttp जोड़ें, मेरे मामले में संस्करण है 3.3.1:

compile 'com.squareup.okhttp3:okhttp:3.3.1'

फिर अपना रिट्रोफिट बनाने से पहले, यह करें:

OkHttpClient okHttpClient = new OkHttpClient().newBuilder()
    .connectTimeout(60, TimeUnit.SECONDS)
    .readTimeout(60, TimeUnit.SECONDS)
    .writeTimeout(60, TimeUnit.SECONDS)
    .build();
return new Retrofit.Builder()
    .baseUrl(baseUrl)
    .client(okHttpClient)
    .addConverterFactory(GsonConverterFactory.create())
    .build();

मेरा बुरा, मुझे याद आ रहा था ()
जोनाथन एस्टे

उस 60 सेकंड के बाद क्या होगा? क्या हम वहां कोई संकेत दिखा सकते हैं?
अर्नोल्ड ब्राउन

@AnnoldBrown आप रेट्रोफिट कॉल को विफल कर देंगे जो ऑनफ़ेल्योर ()
सी। स्केजेराल्ड

10
public class ApiClient {
    private static Retrofit retrofit = null;
    private static final Object LOCK = new Object();

    public static void clear() {
        synchronized (LOCK) {
            retrofit = null;
        }
    }

    public static Retrofit getClient() {
        synchronized (LOCK) {
            if (retrofit == null) {

                Gson gson = new GsonBuilder()
                        .setLenient()
                        .create();

                OkHttpClient okHttpClient = new OkHttpClient().newBuilder()
                        .connectTimeout(40, TimeUnit.SECONDS)
                        .readTimeout(60, TimeUnit.SECONDS)
                        .writeTimeout(60, TimeUnit.SECONDS)
                        .build();


                retrofit = new Retrofit.Builder()
                        .client(okHttpClient)
                        .baseUrl(Constants.WEB_SERVICE)
                        .addConverterFactory(GsonConverterFactory.create(gson))
                        .build();
            }
            return retrofit;
        }

    }

    public static RequestBody plain(String content) {
        return getRequestBody("text/plain", content);
    }

    public static RequestBody getRequestBody(String type, String content) {
        return RequestBody.create(MediaType.parse(type), content);
    }
}

@FormUrlEncoded
@POST("architect/project_list_Design_files")
Call<DesignListModel> getProjectDesign(
        @Field("project_id") String project_id);


@Multipart
@POST("architect/upload_design")
Call<BoqListModel> getUpLoadDesign(
        @Part("user_id") RequestBody user_id,
        @Part("request_id") RequestBody request_id,
        @Part List<MultipartBody.Part> image_file,
        @Part List<MultipartBody.Part> design_upload_doc);


private void getMyProjectList()
{

    ApiInterface apiService = ApiClient.getClient().create(ApiInterface.class);
    Call<MyProjectListModel> call = apiService.getMyProjectList("",Sorting,latitude,longitude,Search,Offset+"",Limit);
    call.enqueue(new Callback<MyProjectListModel>() {
        @Override
        public void onResponse(Call<MyProjectListModel> call, Response<MyProjectListModel> response) {
            try {
                Log.e("response",response.body()+"");

            } catch (Exception e)
            {
                Log.e("onResponse: ", e.toString());
                           }
        }
        @Override
        public void onFailure(Call<MyProjectListModel> call, Throwable t)
        {
            Log.e( "onFailure: ",t.toString());
                   }
    });
}

// file upload

private void getUpload(String path,String id)
    {

        ApiInterface apiService = ApiClient.getClient().create(ApiInterface.class);
        MultipartBody.Part GalleryImage = null;
        if (path!="")
        {
            File file = new File(path);
            RequestBody reqFile = RequestBody.create(MediaType.parse("multipart/form-data"), file);
            GalleryImage = MultipartBody.Part.createFormData("image", file.getName(), reqFile);
        }

        RequestBody UserId = RequestBody.create(MediaType.parse("text/plain"), id);
        Call<uplod_file> call = apiService.geUplodFileCall(UserId,GalleryImage);
        call.enqueue(new Callback<uplod_file>() {
            @Override
            public void onResponse(Call<uplod_file> call, Response<uplod_file> response) {
                try {
                    Log.e("response",response.body()+"");
                    Toast.makeText(getApplicationContext(),response.body().getMessage(),Toast.LENGTH_SHORT).show();

                } catch (Exception e)
                {
                    Log.e("onResponse: ", e.toString());
                }
            }
            @Override
            public void onFailure(Call<uplod_file> call, Throwable t)
            {
                Log.e( "onFailure: ",t.toString());
            }
        });
    }

    implementation 'com.squareup.retrofit2:retrofit:2.4.0'
    implementation 'com.squareup.retrofit2:converter-gson:2.4.0'

4
कृपया अपने उत्तर के लिए कुछ समय सीमा समाप्त करें।
humble_wolf

1

मैं XML प्राप्त करने के लिए Retrofit 1.9 का उपयोग कर रहा हूं ।

public class ServicioConexionRetrofitXML {

    public static final String API_BASE_URL = new GestorPreferencias().getPreferencias().getHost();
    public static final long tiempoMaximoRespuestaSegundos = 60;
    public static final long tiempoMaximoLecturaSegundos = 100;
    public static final OkHttpClient clienteOkHttp = new OkHttpClient();


    private static RestAdapter.Builder builder = new RestAdapter.Builder().
            setEndpoint(API_BASE_URL).
            setClient(new OkClient(clienteOkHttp)).setConverter(new SimpleXMLConverter());


    public static <S> S createService(Class<S> serviceClass) {
        clienteOkHttp.setConnectTimeout(tiempoMaximoRespuestaSegundos, TimeUnit.SECONDS);
        clienteOkHttp.setReadTimeout(tiempoMaximoLecturaSegundos, TimeUnit.SECONDS);
        RestAdapter adapter = builder.build();
        return adapter.create(serviceClass);
    }

}

यदि आप Retrofit 1.9.0 और okhttp 2.6.0 का उपयोग कर रहे हैं, तो अपनी ग्रेड फ़ाइल में जोड़ें।

    compile 'com.squareup.retrofit:retrofit:1.9.0'
    compile 'com.squareup.okhttp:okhttp:2.6.0'
    // Librería de retrofit para XML converter (Simple) Se excluyen grupos para que no entre
    // en conflicto.
    compile('com.squareup.retrofit:converter-simplexml:1.9.0') {
        exclude group: 'xpp3', module: 'xpp3'
        exclude group: 'stax', module: 'stax-api'
        exclude group: 'stax', module: 'stax'
    }

नोट: यदि आपको JSON लाने की आवश्यकता है , तो बस ऊपर दिए गए कोड को हटा दें।

.setConverter(new SimpleXMLConverter())

1

OkHttp3 उपयोगकर्ताओं के साथ Retrofit1.9 के लिए, यहाँ समाधान है,

.setClient(new Ok3Client(new OkHttpClient.Builder().readTimeout(60, TimeUnit.SECONDS).build()))

0
public class ApiModule {
    public WebService apiService(Context context) {
        String mBaseUrl = context.getString(BuildConfig.DEBUG ? R.string.local_url : R.string.live_url);

        HttpLoggingInterceptor loggingInterceptor = new HttpLoggingInterceptor();
        loggingInterceptor.setLevel(BuildConfig.DEBUG ? HttpLoggingInterceptor.Level.BODY : HttpLoggingInterceptor.Level.NONE);

        OkHttpClient okHttpClient = new OkHttpClient.Builder()
                .readTimeout(120, TimeUnit.SECONDS)
                .writeTimeout(120, TimeUnit.SECONDS)
                .connectTimeout(120, TimeUnit.SECONDS)
                .addInterceptor(loggingInterceptor)
                //.addNetworkInterceptor(networkInterceptor)
                .build();

        return new Retrofit.Builder().baseUrl(mBaseUrl)
                .client(okHttpClient)
                .addConverterFactory(GsonConverterFactory.create())
                .addCallAdapterFactory(RxJavaCallAdapterFactory.create())
                .build().create(WebService.class);

    }
}

0

यह प्रत्येक सेवा के लिए टाइमआउट सेट करने के लिए सबसे अच्छा तरीका होगा (पैरामीटर के रूप में टाइमआउट पारित करना)

public static Retrofit getClient(String baseUrl, int serviceTimeout) {
        Retrofit retrofitselected = baseUrl.contains("http:") ? retrofit : retrofithttps;
        if (retrofitselected == null || retrofitselected.equals(retrofithttps)) {
            retrofitselected = new Retrofit.Builder()
                    .baseUrl(baseUrl)
                    .addConverterFactory(GsonConverterFactory.create(getGson().create()))
                    .client(!BuildConfig.FLAVOR.equals("PRE") ? new OkHttpClient.Builder()
                            .addInterceptor(new ResponseInterceptor())
                            .connectTimeout(serviceTimeout, TimeUnit.MILLISECONDS)
                            .writeTimeout(serviceTimeout, TimeUnit.MILLISECONDS)
                            .readTimeout(serviceTimeout, TimeUnit.MILLISECONDS)
                            .build() : getUnsafeOkHttpClient(serviceTimeout))
                    .build();
        }
        return retrofitselected;
    }

और यह OkHttpClient के लिए याद मत करो।

private static OkHttpClient getUnsafeOkHttpClient(int serviceTimeout) {
        try {
            // Create a trust manager that does not validate certificate chains
            final TrustManager[] trustAllCerts = new TrustManager[] {
                    new X509TrustManager() {
                        @Override
                        public void checkClientTrusted(java.security.cert.X509Certificate[] chain, String authType) throws CertificateException {
                        }

                        @Override
                        public void checkServerTrusted(java.security.cert.X509Certificate[] chain, String authType) throws CertificateException {
                        }

                        @Override
                        public java.security.cert.X509Certificate[] getAcceptedIssuers() {
                            return new java.security.cert.X509Certificate[]{};
                        }
                    }
            };

            // Install the all-trusting trust manager
            final SSLContext sslContext = SSLContext.getInstance("SSL");
            sslContext.init(null, trustAllCerts, new java.security.SecureRandom());
            // Create an ssl socket factory with our all-trusting manager
            final SSLSocketFactory sslSocketFactory = sslContext.getSocketFactory();

            OkHttpClient.Builder builder = new OkHttpClient.Builder();
            builder.sslSocketFactory(sslSocketFactory);
            builder.hostnameVerifier(new HostnameVerifier() {
                @Override
                public boolean verify(String hostname, SSLSession session) {
                    return true;
                }
            });

            OkHttpClient okHttpClient = builder
                    .addInterceptor(new ResponseInterceptor())
                    .connectTimeout(serviceTimeout, TimeUnit.MILLISECONDS)
                    .writeTimeout(serviceTimeout, TimeUnit.MILLISECONDS)
                    .readTimeout(serviceTimeout, TimeUnit.MILLISECONDS)
                    .build();
            return okHttpClient;
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }

आशा है कि यह किसी की मदद करेगा।


0

मुझे यह उदाहरण मिला

https://github.com/square/retrofit/issues/1557

यहाँ हम कस्टम यूआरएल क्लाइंट कनेक्शन क्लाइंट सेट करते हैं इससे पहले कि हम एपीआई बाकी सेवा कार्यान्वयन का निर्माण करें।

import com.google.gson.Gson
import com.google.gson.GsonBuilder
import retrofit.Endpoint
import retrofit.RestAdapter
import retrofit.client.Request
import retrofit.client.UrlConnectionClient
import retrofit.converter.GsonConverter


class ClientBuilder {

    public static <T> T buildClient(final Class<T> client, final String serviceUrl) {
        Endpoint mCustomRetrofitEndpoint = new CustomRetrofitEndpoint()


        Gson gson = new GsonBuilder().excludeFieldsWithoutExposeAnnotation().create()
        RestAdapter.Builder builder = new RestAdapter.Builder()
            .setEndpoint(mCustomRetrofitEndpoint)
            .setConverter(new GsonConverter(gson))
            .setClient(new MyUrlConnectionClient())
        RestAdapter restAdapter = builder.build()
        return restAdapter.create(client)
    }
}

 public final class MyUrlConnectionClient extends UrlConnectionClient {
        @Override
        protected HttpURLConnection openConnection(Request request) {
            HttpURLConnection connection = super.openConnection(request);
            connection.setConnectTimeout(15 * 1000);
            connection.setReadTimeout(30 * 1000);
            return connection;
        }
    }

-1
public class ApiClient {
    private static Retrofit retrofit = null;
    private static final Object LOCK = new Object();

    public static void clear() {
        synchronized (LOCK) {
            retrofit = null;
        }
    }

    public static Retrofit getClient() {
        synchronized (LOCK) {
            if (retrofit == null) {

                Gson gson = new GsonBuilder()
                        .setLenient()
                        .create();

                OkHttpClient okHttpClient = new OkHttpClient().newBuilder()
                        .connectTimeout(40, TimeUnit.SECONDS)
                        .readTimeout(60, TimeUnit.SECONDS)
                        .writeTimeout(60, TimeUnit.SECONDS)
                        .build();

                // Log.e("jjj", "=" + (MySharedPreference.getmInstance().isEnglish() ? Constant.WEB_SERVICE : Constant.WEB_SERVICE_ARABIC));
                retrofit = new Retrofit.Builder()
                        .client(okHttpClient)
                        .baseUrl(Constants.WEB_SERVICE)
                        .addConverterFactory(GsonConverterFactory.create(gson))
                        .build();
            }
            return retrofit;
        }`enter code here`

    }

    public static RequestBody plain(String content) {
        return getRequestBody("text/plain", content);
    }

    public static RequestBody getRequestBody(String type, String content) {
        return RequestBody.create(MediaType.parse(type), content);
    }
}


-------------------------------------------------------------------------


    implementation 'com.squareup.retrofit2:retrofit:2.4.0'
    implementation 'com.squareup.retrofit2:converter-gson:2.4.0'

2
हालांकि यह कोड स्निपेट प्रश्न को हल कर सकता है, जिसमें स्पष्टीकरण सहित वास्तव में आपकी पोस्ट की गुणवत्ता में सुधार करने में मदद करता है। याद रखें कि आप भविष्य में पाठकों के लिए प्रश्न का उत्तर दे रहे हैं, और उन लोगों को आपके कोड सुझाव के कारणों का पता नहीं चल सकता है। कृपया अपने कोड को व्याख्यात्मक टिप्पणियों के साथ भीड़ न दें, इससे कोड और स्पष्टीकरण दोनों की पठनीयता कम हो जाती है!
फाइलनॉर
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.