Merge pull request #31 from JimmyLoveSiren/master

Fix #30 and add unit test
This commit is contained in:
Yoshifumi Kawai
2019-09-20 20:55:35 +09:00
committed by GitHub
2 changed files with 35 additions and 0 deletions

View File

@@ -257,6 +257,7 @@ namespace UniRx.Async
public IDisposable Subscribe(IObserver<T> observer)
{
observer.OnNext(value);
observer.OnCompleted();
return EmptyDisposable.Instance;
}
}