/**
* Combines provided actions into a single action stream
*
* @param a1 Action
* @return Single action stream combined from provided actions
*/
@CheckResult
@NonNull
public static <T1, T2, T3> Action3<? super T1, ? super T2, ? super T3> combine(@NonNull Action3<? super T1, ? super T2, ? super T3> a1) {
return a1;
}
Actions.java 文件源码
java
阅读 31
收藏 0
点赞 0
评论 0
项目:RxActions
作者:
评论列表
文章目录