I dont understand the difference between the two of those.
From what I understand:
- Both of them save data on disc using Gson.
- Both of them can handle any POJO object.
So what's the difference?
I dont understand the difference between the two of those.
From what I understand:
So what's the difference?
Copyright © 2021 Jogjafile Inc.
The
GsonObjectPersisterFactory
is used in the robospice-google-http-client and robospice-spring-android Robospice extensions. TheGsonRetrofitObjectPersisterFactory
is used in the robospice-retrofit extension.The difference is in the
retrofit.converter.Converter
object passed as a constructor argument to theGsonRetrofitObjectPersisterFactory
. This object basically acts as a bridge between Robospice and Retrofit in the caching part. A different RetrofitConverter
is used for the different JSON mapping solutions used in the robospice-retrofit extension, therefore you have aJacksonRetrofitObjectPersisterFactory
as well.See
com.octo.android.robospice.persistence.retrofit.RetrofitObjectPersisterFactory
and its package for more info.