Phase 744: extract guild sync watermark, gossip, bandwidth mixins

Non-breaking refactor: move sync watermark/ack/tail helpers, gossip outbox
queue and flush, and bandwidth/member-page slice helpers out of
platform-pearcord-platform-class.js. Manifest rows 73→76; runtime registry
13→16. Mesh sync behavior and observability unchanged.

Co-authored-by: Cursor <[email protected]>
This commit is contained in:
Raven Scott
2026-06-03 11:18:51 -04:00
co-authored by Cursor
parent 870cb61b46
commit 88a1624a2c
7 changed files with 378 additions and 310 deletions
+4 -1
View File
@@ -4,7 +4,7 @@
* Ordered PearcordPlatform prototype mixin registration (Phase 730).
* Preserves assign order from index.js / apply-platform-mixins (Phase 727).
*/
const PLATFORM_MIXIN_ASSIGNMENT_COUNT = 73
const PLATFORM_MIXIN_ASSIGNMENT_COUNT = 76
const PLATFORM_MIXIN_ASSIGNMENTS = [
{ module: './polls-scheduling', export: 'pollSchedulingMixin' },
@@ -79,6 +79,9 @@ const PLATFORM_MIXIN_ASSIGNMENTS = [
{ module: './platform-mesh-view-mixin', export: 'platformMeshViewMixin' },
{ module: './platform-mesh-logging-mixin', export: 'platformMeshLoggingMixin' },
{ module: './platform-member-page-burst-mixin', export: 'platformMemberPageBurstMixin' },
{ module: './platform-guild-sync-watermark-mixin', export: 'platformGuildSyncWatermarkMixin' },
{ module: './platform-guild-gossip-outbox-mixin', export: 'platformGuildGossipOutboxMixin' },
{ module: './platform-guild-sync-bandwidth-mixin', export: 'platformGuildSyncBandwidthMixin' },
{ module: './platform-diagnostics-mixin', export: 'platformDiagnosticsMixin' }
]