Created
September 4, 2016 19:48
-
-
Save lizixroy/8082eb827fd8e50e578d0055fc459521 to your computer and use it in GitHub Desktop.
RxSwift-article-5.swift
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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