RoboSpice - difference between GsonObjectPersisterFactory and GsonRetrofitObjectPersisterFactory

151 Views Asked by At

I dont understand the difference between the two of those.

From what I understand:

  1. Both of them save data on disc using Gson.
  2. Both of them can handle any POJO object.

So what's the difference?

1

There are 1 best solutions below

0
On

The GsonObjectPersisterFactory is used in the robospice-google-http-client and robospice-spring-android Robospice extensions. The GsonRetrofitObjectPersisterFactory is used in the robospice-retrofit extension.

The difference is in the retrofit.converter.Converter object passed as a constructor argument to the GsonRetrofitObjectPersisterFactory. This object basically acts as a bridge between Robospice and Retrofit in the caching part. A different Retrofit Converter is used for the different JSON mapping solutions used in the robospice-retrofit extension, therefore you have a JacksonRetrofitObjectPersisterFactory as well.

See com.octo.android.robospice.persistence.retrofit.RetrofitObjectPersisterFactory and its package for more info.