use of org.qii.weiciyuan.dao.timeline.RepostsTimeLineByIdDao in project weiciyuan by qii.
the class RepostByIdMsgLoader method loadData.
public RepostListBean loadData() throws WeiboException {
RepostsTimeLineByIdDao dao = new RepostsTimeLineByIdDao(token, id);
dao.setSince_id(sinceId);
dao.setMax_id(maxId);
RepostListBean result = null;
lock.lock();
try {
result = dao.getGSONMsgList();
} finally {
lock.unlock();
}
return result;
}
Aggregations