use of com.rideread.rideread.common.event.MsgListRefreshEvent in project ride-read-android by Ride-Read.
the class MsgUtils method saveMsgUserList.
private static void saveMsgUserList(JSONObject msgUserJson) {
String jsonStr = msgUserJson.toJSONString();
CurCache.put(CUR_MSG_USERS_OBJ, jsonStr);
Storage.put(CUR_MSG_USERS_OBJ, jsonStr);
EventBus.getDefault().postSticky(new MsgListRefreshEvent());
}
Aggregations