use of me.zhanghai.android.douya.eventbus.BroadcastCommentSentEvent in project Douya by DreaminginCodeZH.
the class SendBroadcastCommentWriter method onResponse.
@Override
public void onResponse(Comment response) {
ToastUtils.show(R.string.broadcast_send_comment_successful, getContext());
EventBusUtils.postAsync(new BroadcastCommentSentEvent(mBroadcastId, response, this));
stopSelf();
}
Aggregations