Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vincent-pradeilles/2387dfb919a0d83033a99c34d232c124 to your computer and use it in GitHub Desktop.
Save vincent-pradeilles/2387dfb919a0d83033a99c34d232c124 to your computer and use it in GitHub Desktop.
func observableRequest(arg1: String, arg2: Int) -> Observable<String> {
return Observable.create { (observer) -> Disposable in
request(arg1: arg1, arg2: arg2, completionHandler: { result in
observer.onNext(result)
observer.onCompleted()
})
return Disposables.create()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment