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 ff33fc8 commit a31bee7Copy full SHA for a31bee7
src/error.rs
@@ -37,6 +37,10 @@ pub enum ScannerError {
37
#[error("Subscription closed")]
38
SubscriptionClosed,
39
40
+ /// A subscription consumer could not keep up and some internal messages were skipped.
41
+ ///
42
+ /// The contained value is the number of skipped messages reported by the underlying channel.
43
+ /// After emitting this error, the subscription stream may continue with newer items.
44
#[error("Subscription lagged")]
45
Lagged(u64),
46
}
0 commit comments