Skip to content

Instantly share code, notes, and snippets.

@creaaa
Created January 27, 2019 15:14
Show Gist options
  • Save creaaa/f14d9c92c2ff19a0740dc397ebe9413f to your computer and use it in GitHub Desktop.
Save creaaa/f14d9c92c2ff19a0740dc397ebe9413f to your computer and use it in GitHub Desktop.
ちゃんとonCompleted流れとる
let observable = Observable<Int>.empty()
observable
.subscribe(onCompleted: { print("completedきた") })
.disposed(by: bag)
// result
"completedきた"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment