Skip to content

Instantly share code, notes, and snippets.

@AndreyAnt
Created April 22, 2020 14:54
Show Gist options
  • Save AndreyAnt/3057e34d10820b51ba3be21fff534d6a to your computer and use it in GitHub Desktop.
Save AndreyAnt/3057e34d10820b51ba3be21fff534d6a to your computer and use it in GitHub Desktop.
#if DEBUG
_ = Observable<Int>.interval(.seconds(1), scheduler: MainScheduler.instance)
.map { _ in RxSwift.Resources.total }
.distinctUntilChanged()
.subscribe(onNext: { print("♦️ Resource count \($0)") })
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment