Skip to content

Instantly share code, notes, and snippets.

@arvindravi
Created June 18, 2019 07:44
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 arvindravi/ae952e5a573797dc74bcc6bdeb5ff350 to your computer and use it in GitHub Desktop.
Save arvindravi/ae952e5a573797dc74bcc6bdeb5ff350 to your computer and use it in GitHub Desktop.
Publisher
protocol Publisher {
associatedtype Output
associatedtype Failure
func subscribe<S: Subscribe>(_ subscribe: S) {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment