Skip to content

Instantly share code, notes, and snippets.

@masliukivskyi
Created April 27, 2020 23:18
Show Gist options
  • Save masliukivskyi/8d9057db1542191dde5fb358218fcb38 to your computer and use it in GitHub Desktop.
Save masliukivskyi/8d9057db1542191dde5fb358218fcb38 to your computer and use it in GitHub Desktop.
Basics of Combine
let subject = CurrentValueSubject<String, Never>("This text should not be received")
subject.send("😉")
subject.sink { (value) in
print("Received value: \(value)")
}
subject.send("🐶”)
Output:
Received value: 😉
Received value: 🐶
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment