@@ -66,9 +66,13 @@ maybeDescribe('examples(change-stream):', function () {
66
66
// Start Changestream Example 1
67
67
const collection = db . collection ( 'inventory' ) ;
68
68
const changeStream = collection . watch ( ) ;
69
- changeStream . on ( 'change' , next => {
70
- // process next document
71
- } ) ;
69
+ changeStream
70
+ . on ( 'change' , next => {
71
+ // process next document
72
+ } )
73
+ . once ( 'error' , ( ) => {
74
+ // handle error
75
+ } ) ;
72
76
// End Changestream Example 1
73
77
74
78
const changeStreamIterator = collection . watch ( ) ;
@@ -113,9 +117,13 @@ maybeDescribe('examples(change-stream):', function () {
113
117
// Start Changestream Example 2
114
118
const collection = db . collection ( 'inventory' ) ;
115
119
const changeStream = collection . watch ( [ ] , { fullDocument : 'updateLookup' } ) ;
116
- changeStream . on ( 'change' , next => {
117
- // process next document
118
- } ) ;
120
+ changeStream
121
+ . on ( 'change' , next => {
122
+ // process next document
123
+ } )
124
+ . once ( 'error' , error => {
125
+ // handle error
126
+ } ) ;
119
127
// End Changestream Example 2
120
128
121
129
// Start Changestream Example 2 Alternative
@@ -151,15 +159,23 @@ maybeDescribe('examples(change-stream):', function () {
151
159
const changeStream = collection . watch ( ) ;
152
160
153
161
let newChangeStream ;
154
- changeStream . once ( 'change' , next => {
155
- const resumeToken = changeStream . resumeToken ;
156
- changeStream . close ( ) ;
157
-
158
- newChangeStream = collection . watch ( [ ] , { resumeAfter : resumeToken } ) ;
159
- newChangeStream . on ( 'change' , next => {
160
- processChange ( next ) ;
162
+ changeStream
163
+ . once ( 'change' , next => {
164
+ const resumeToken = changeStream . resumeToken ;
165
+ changeStream . close ( ) ;
166
+
167
+ newChangeStream = collection . watch ( [ ] , { resumeAfter : resumeToken } ) ;
168
+ newChangeStream
169
+ . on ( 'change' , next => {
170
+ processChange ( next ) ;
171
+ } )
172
+ . once ( 'error' , error => {
173
+ // handle error
174
+ } ) ;
175
+ } )
176
+ . once ( 'error' , error => {
177
+ // handle error
161
178
} ) ;
162
- } ) ;
163
179
// End Changestream Example 3
164
180
165
181
// Start Changestream Example 3 Alternative
@@ -200,9 +216,13 @@ maybeDescribe('examples(change-stream):', function () {
200
216
201
217
const collection = db . collection ( 'inventory' ) ;
202
218
const changeStream = collection . watch ( pipeline ) ;
203
- changeStream . on ( 'change' , next => {
204
- // process next document
205
- } ) ;
219
+ changeStream
220
+ . on ( 'change' , next => {
221
+ // process next document
222
+ } )
223
+ . once ( 'error' , error => {
224
+ // handle error
225
+ } ) ;
206
226
// End Changestream Example 4
207
227
208
228
// Start Changestream Example 4 Alternative
0 commit comments