feat(realtime): realtime explicit REST call - #1751
Merged
Merged
Conversation
6 tasks
grdsdev
approved these changes
Oct 9, 2025
mandarini
approved these changes
Oct 9, 2025
grdsdev
added a commit
to supabase/supabase-flutter
that referenced
this pull request
Oct 9, 2025
Added new `httpSend` method to RealtimeChannel class that explicitly uses the REST API endpoint for sending broadcast messages, regardless of WebSocket connection state. Changes: - Added `httpSend` method with proper error handling and timeout support - Added deprecation warning to `send` method when falling back to REST - Comprehensive test coverage for the new method This addresses the issue where users may unknowingly use REST API fallback when WebSocket is not connected. The new method provides explicit control over message delivery mechanism. Ported from: supabase/supabase-js#1751 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
grdsdev
added a commit
to supabase/supabase-flutter
that referenced
this pull request
Nov 12, 2025
Added new `httpSend` method to RealtimeChannel class that explicitly uses the REST API endpoint for sending broadcast messages, regardless of WebSocket connection state. Changes: - Added `httpSend` method with proper error handling and timeout support - Added deprecation warning to `send` method when falling back to REST - Comprehensive test coverage for the new method This addresses the issue where users may unknowingly use REST API fallback when WebSocket is not connected. The new method provides explicit control over message delivery mechanism. Ported from: supabase/supabase-js#1751 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
6 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🔍 Description
Added new public method for explicit usage of REST API for broadcast
What changed?
New method
httpSendaddedWhy was this change needed?
Our current approach leads users to use broadcast without knowing.
🔄 Breaking changes
sendwhile not connected.📋 Checklist
<type>(<scope>): <description>npx nx formatto ensure consistent code formatting