We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff3fec2 commit d9fcfdbCopy full SHA for d9fcfdb
README.md
@@ -139,6 +139,13 @@ if (success) {
139
}
140
```
141
142
+Subscriber API allows following combinations of `onNext`, `onCompleted` and `onError` callback invocations:
143
+ * zero or more `onNext` followed by `onCompleted` when operation was successful. `onError` will not be invoked
144
+ in this case
145
+ * zero or more `onNext` followed by `onError` when operation failed. Callback `onError` might be invoked after
146
+ couple `onNext` invocations because records are streamed lazily by the database. `onCompleted` will not be invoked
147
148
+
149
## Building
150
151
npm install
0 commit comments