We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b9962b commit 4469683Copy full SHA for 4469683
RxBlocking/BlockingObservable+Operators.swift
@@ -10,6 +10,14 @@
10
import RxSwift
11
#endif
12
13
+/// The `MaterializedSequenceResult` enum represents the materialized
14
+/// output of a BlockingObservable.
15
+///
16
+/// If the sequence terminates successfully, the result is represented
17
+/// by `.completed` with the array of elements.
18
19
+/// If the sequene terminates with error, the result is represented
20
+/// by `.failed` with both the array of elements and the terminating error.
21
public enum MaterializedSequenceResult<T> {
22
case completed(elements: [T])
23
case failed(elements: [T], error: Error)
0 commit comments