[PUB-1030] LiveObjects behavior under different channel states#1972
[PUB-1030] LiveObjects behavior under different channel states#1972VeskeR merged 2 commits intointegration/liveobjectsfrom
Conversation
WalkthroughThis pull request refactors error handling logic across several LiveObjects modules. The changes replace legacy state mode checks with new API configuration validations. Methods in classes such as BatchContext, BatchContextLiveCounter, BatchContextLiveMap, LiveCounter, LiveMap, LiveObject, and LiveObjects now invoke updated validation functions (e.g., Changes
Sequence Diagram(s)sequenceDiagram
participant Client
participant API as LiveObjects/LiveCounter/LiveMap/LiveObject
participant Validator as Error Validator
Client->>API: Invoke operation (e.g., getRoot, subscribe, increment)
API->>Validator: Call new error validation method
alt Configuration Valid
Validator-->>API: Return success
API->>API: Execute operation logic
API-->>Client: Return result
else Configuration Invalid
Validator-->>API: Throw error
API-->>Client: Error thrown
end
Possibly related PRs
Suggested reviewers
Poem
Warning There were issues while running some tools. Please review the errors and either fix the tool’s configuration or disable the tool if it’s a critical failure. 🔧 ast-grep (0.31.1)test/realtime/live_objects.test.js📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (8)
🧰 Additional context used🧠 Learnings (1)src/plugins/liveobjects/livecounter.ts (1)⏰ Context from checks skipped due to timeout of 90000ms (6)
🔇 Additional comments (40)
✨ Finishing Touches
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
When the channel is
SUSPENDEDWhen the channel is
DETACHEDorFAILEDResolves PUB-1030