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 57394c0 commit 0aa973aCopy full SHA for 0aa973a
crates/core/src/sync/subscriptions.rs
@@ -75,7 +75,6 @@ pub struct UnsubscribeFromStream {
75
pub stream: String,
76
#[serde(default)]
77
pub params: Option<Box<serde_json::value::RawValue>>,
78
- pub immediate: bool,
79
}
80
81
pub fn apply_subscriptions(
dart/test/sync_stream_test.dart
@@ -245,7 +245,6 @@ void main() {
245
'unsubscribe': {
246
'stream': 'my_stream',
247
'params': null,
248
- 'immediate': false,
249
250
}),
251
);
@@ -367,7 +366,7 @@ void main() {
367
366
control(
368
'subscriptions',
369
json.encode({
370
- 'unsubscribe': {'stream': 'a', 'immediate': false}
+ 'unsubscribe': {'stream': 'a'}
371
372
373
control('stop', null);
0 commit comments