Skip to content

Instantly share code, notes, and snippets.

@lizixroy
Created September 4, 2016 19:48
Show Gist options
  • Save lizixroy/8082eb827fd8e50e578d0055fc459521 to your computer and use it in GitHub Desktop.
Save lizixroy/8082eb827fd8e50e578d0055fc459521 to your computer and use it in GitHub Desktop.
RxSwift-article-5.swift
public enum Event<Element> {
/// Next element is produced.
case Next(Element)
/// Sequence terminated with an error.
case Error(ErrorType)
/// Sequence completed successfully.
case Completed
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment