-
Notifications
You must be signed in to change notification settings - Fork 192
java.lang.ClassCastException: com.google.gson.internal.LinkedTreeMap #41
Comments
Don't save the object Observable<UserBasicInfoResponse> oUser = userBasicInfoResponseObservable
.map(userBasicInfoResponse -> userBasicInfoResponse.data);
rxProviders.loadUserBasicInfo(oUser , new DynamicKey(1) , new EvictProvider(false)); |
Thinks so much for your quick reply! my core code about it as below
This is the net API
This is the cache interface method
|
The endpoint should be @LifeCache(duration =5, timeUnit = TimeUnit.SECONDS)
Observable<UserBasicInfoResponse> loadUserBasicInfo(Observable<UserBasicInfoResponse> userBasicInfoResponseObservable
, DynamicKey userId , EvictProvider evictProvider); And you just need to apply the map operator to transform the data. I suggest to you to learn a little more rxjava before attempting to use RxCache, or any reactive library for that matters. ;) |
OK,thank you so much! |
but if i want to save just baseResponse, how can i do @VictorAlbertos |
this is my method to avoid use @VictorAlbertos help me that whether this can sovle problem |
i use retrofit + rxjava + rxcache in my project,and the response json data format is:
{"data":{},"status":200}
i define a BaseResponse.class ps : data is a object not list:
public class BaseResponse<T> { public int status; public T data; }
i define a cache interface method :
@LifeCache(duration = 20, timeUnit = TimeUnit.MINUTES) Observable<Reply<BaseResponse<UserBasicInfoResponse>>> loadUserBasicInfo(Observable<BaseResponse<UserBasicInfoResponse>> userBasicInfoResponseObservable , DynamicKey userId , EvictProvider evictProvider);
when racache load from memory it's ok,but raCache load from disk an error has occurred(java.lang.ClassCastException: com.google.gson.internal.LinkedTreeMap ),I don't know how to solve this question.
when i debug I find diskCache lose type "UserBasicInfoResponse", do you have any advice about it ?
thinks!
The text was updated successfully, but these errors were encountered: