Skip to content

Instantly share code, notes, and snippets.

@dimanem
Last active February 23, 2020 07:14
Show Gist options
  • Save dimanem/c44f2cc71559afff3c4c5bc1ea54d551 to your computer and use it in GitHub Desktop.
Save dimanem/c44f2cc71559afff3c4c5bc1ea54d551 to your computer and use it in GitHub Desktop.
fun <TResult> Task<TResult>.asObservable(): Observable<TResult> {
return Observable.create<TResult> { emitter ->
this.addOnSuccessListener {
emitter.onNext(it)
emitter.onComplete()
}
this.addOnFailureListener {
emitter.onError(it)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment