Skip to content

Instantly share code, notes, and snippets.

@max6363
Created January 20, 2022 12:41
Show Gist options
  • Save max6363/46ee39af6c86038b1e8a57ab38a649d6 to your computer and use it in GitHub Desktop.
Save max6363/46ee39af6c86038b1e8a57ab38a649d6 to your computer and use it in GitHub Desktop.
import Combine
import Foundation
import PlaygroundSupport
let subscription = Timer.publish(every: 1, on: .main, in: .common)
.autoconnect()
.sink { output in
print("finished stream with : \(output)")
} receiveValue: { value in
print("receive value: \(value)")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment