rxjava2
Here are 2,358 public repositories matching this topic...
-
Updated
Mar 26, 2020 - Java
-
Updated
May 20, 2020 - Java
-
Updated
May 16, 2020 - Java
-
Updated
Mar 3, 2020 - Java
-
Updated
Oct 12, 2019 - Kotlin
DESCRIPTION
When you have a certain custom theme color selected, you can't just undo that by clicking "reset", or "default".
No option/button to select/go back to default theme, after the custom color is selected.
-
Updated
Dec 27, 2018 - Java
-
Updated
Mar 19, 2020 - Java
-
Updated
Mar 26, 2020 - Java
We can see RxJava3.x RC here: https://github.com/ReactiveX/RxJava/releases/tag/v3.0.0-RC2
ReactiveNetwork should be migrated to RxJava3.x on a separate git branch with the same approach as previous major upgrade of RxJava.
-
Updated
Mar 26, 2020 - Java
-
Updated
Apr 22, 2020 - Java
-
Updated
May 18, 2020 - Java
如下问题是基于soul-master代码分支发现的:
场景一
dubbo单参数,方法参数为Java基本类型,代码如下:
@override
@SoulClient(path = "/findById", desc = "根据用户查询")
public DubboTest findById(final String id) {
DubboTest dubboTest = new DubboTest();
dubboTest.setId(id);
dubboTest.setName("hhah");
return dubboTest;
}
调用网关,http://localhost:9195/dubbo/findById body设置:{"id":"1"
-
Updated
Apr 27, 2020 - Java
-
Updated
Mar 26, 2020 - Java
-
Updated
Mar 25, 2020 - Kotlin
RxTiPresenterUtils.deliverLatestCacheToView
caches and re-delivers all items emitted by the source.
Look at this log output. When the view is detached, several items are emitted by the source, but not delivered. This is correct so far.
After the view is reattached, all of the items are delivered again, including those which had already been delivered (c9915aa
) and those which should
Improve this page
Add a description, image, and links to the rxjava2 topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the rxjava2 topic, visit your repo's landing page and select "manage topics."
In Using Disposable in RxJava
disposables.clear()
is invoked inonStop()
But in the comment and also Github
`disposab