RxJava的Action

Posted 天长地久-无为

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RxJava的Action相关的知识,希望对你有一定的参考价值。

A functional interface similar to Runnable but allows throwing a checked exception.
public interface Action {
/**
* Runs the action and optionally throws a checked exception.
* @throws Exception if the implementation wishes to throw a checked exception
*/
void run() throws Exception;
}






以上是关于RxJava的Action的主要内容,如果未能解决你的问题,请参考以下文章

使用 rxJava 和改造多次调用另一个请求中的请求

使用 RxJava 将数据从 ViewModel 移动到 Fragment

Rxjava基本使用

RxJava操作符doOnNext

导航到另一个片段时触发 API 调用

如何在基础活动暂停时暂停rxjava Observable.interval