alpha
Login
or
Join now
microcosm.blue
/
microcosm-rs
Star
0
Fork
3
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Constellation, Spacedust, Slingshot, UFOs: atproto crates and services for microcosm
Star
0
Fork
3
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
add docs for `instant` param
author
phil
date
1 year ago
(Jun 23, 2025, 2:14 PM -0400)
commit
64db2f7f
64db2f7f4dec2bec71f9dc882ebae1a3fa2fad15
parent
2dbe6f88
2dbe6f885f32209afa7cbd9e41b01db752d380e7
+11
1 changed file
Expand all
Collapse all
Unified
Split
spacedust
src
server.rs
+11
spacedust/src/server.rs
Reviewed
···
287
287
#[derive(Deserialize, JsonSchema)]
288
288
#[serde(rename_all = "camelCase")]
289
289
struct ScalarSubscribeQuery {
290
290
+
/// Bypass the 21-sec delay buffer
291
291
+
///
292
292
+
/// By default, spacedust holds all firehose links for 21 seconds before
293
293
+
/// emitting them, to prevent quickly- undone interactions from generating
294
294
+
/// notifications.
295
295
+
///
296
296
+
/// Setting `instant` to true bypasses this buffer, allowing faster (and
297
297
+
/// noisier) notification delivery.
298
298
+
///
299
299
+
/// Typically [a little less than 1%](https://bsky.app/profile/bad-example.com/post/3ls32wctsrs2l)
300
300
+
/// of links links get deleted within 21s of being created.
290
301
#[serde(default)]
291
302
pub instant: bool,
292
303
}