|
| 1 | +package com.example.reactiveprogrammingusingrxjava2._operators.concurrentcalls; |
| 2 | + |
| 3 | +import android.arch.lifecycle.Observer; |
| 4 | +import android.arch.lifecycle.ViewModelProviders; |
| 5 | +import android.os.Bundle; |
| 6 | +import android.support.annotation.Nullable; |
| 7 | +import android.support.v7.app.AppCompatActivity; |
| 8 | +import android.view.View; |
| 9 | +import android.widget.Button; |
| 10 | +import com.example.reactiveprogrammingusingrxjava2.R; |
| 11 | +import com.google.gson.GsonBuilder; |
| 12 | +import okhttp3.OkHttpClient; |
| 13 | +import okhttp3.logging.HttpLoggingInterceptor; |
| 14 | +import retrofit2.Retrofit; |
| 15 | +import retrofit2.adapter.rxjava2.RxJava2CallAdapterFactory; |
| 16 | +import retrofit2.converter.gson.GsonConverterFactory; |
| 17 | +import retrofit2.converter.scalars.ScalarsConverterFactory; |
| 18 | + |
| 19 | +public class ConcurrentAPICallActivity extends AppCompatActivity { |
| 20 | + |
| 21 | + Button button; |
| 22 | + |
| 23 | + @Override |
| 24 | + protected void onCreate(@Nullable Bundle savedInstanceState) { |
| 25 | + super.onCreate(savedInstanceState); |
| 26 | + setContentView(R.layout.activity_temp); |
| 27 | + |
| 28 | + ConcurrentAPIViewModel viewModel = |
| 29 | + ViewModelProviders.of(this).get(ConcurrentAPIViewModel.class); |
| 30 | + |
| 31 | + button = findViewById(R.id.button_test); |
| 32 | + button.setOnClickListener(new View.OnClickListener() { |
| 33 | + @Override |
| 34 | + public void onClick(View v) { |
| 35 | + viewModel.getCustomerInformation(getCustomerInfoBackend()); |
| 36 | + } |
| 37 | + }); |
| 38 | + |
| 39 | + viewModel.userWalletInfo.observe(this, new Observer<Object>() { |
| 40 | + @Override |
| 41 | + public void onChanged(@Nullable Object o) { |
| 42 | + viewModel.getCustomerInformation(getCustomerInfoBackend()); |
| 43 | + } |
| 44 | + }); |
| 45 | + } |
| 46 | + |
| 47 | + private CustomerInfoBackend getCustomerInfoBackend() { |
| 48 | + |
| 49 | + HttpLoggingInterceptor httpLoggingInterceptor = new HttpLoggingInterceptor(); |
| 50 | + httpLoggingInterceptor.setLevel(HttpLoggingInterceptor.Level.BODY); |
| 51 | + |
| 52 | + OkHttpClient.Builder builder = new OkHttpClient.Builder(); |
| 53 | + builder.addNetworkInterceptor(httpLoggingInterceptor); |
| 54 | + |
| 55 | + GsonBuilder gson = new GsonBuilder(); |
| 56 | + gson.setLenient(); |
| 57 | + Retrofit retrofit = new Retrofit.Builder() |
| 58 | + .baseUrl("https://customerdata.free.beeceptor.com") |
| 59 | + .client(builder.build()) |
| 60 | + .addConverterFactory(ScalarsConverterFactory.create()) |
| 61 | + .addConverterFactory(GsonConverterFactory.create(gson.create())) |
| 62 | + //.addConverterFactory(new GsonPConverterFactory(gson.create())) |
| 63 | + .addCallAdapterFactory(RxJava2CallAdapterFactory.create()) |
| 64 | + .build(); |
| 65 | + |
| 66 | + CustomerInfoBackend customerInfoBackend = retrofit.create(CustomerInfoBackend.class); |
| 67 | + return customerInfoBackend; |
| 68 | + } |
| 69 | +} |
0 commit comments