Skip to content

Instantly share code, notes, and snippets.

@Sajjon
Created August 17, 2020 12:51
Show Gist options
  • Save Sajjon/cdffd37be1f72e421a279b714b62af96 to your computer and use it in GitHub Desktop.
Save Sajjon/cdffd37be1f72e421a279b714b62af96 to your computer and use it in GitHub Desktop.
A runnable task performing some work.
protocol Job {
associatedtype Input
associatedtype Output
func work(input: Input) throws -> Output
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment