-
-
Notifications
You must be signed in to change notification settings - Fork 271
Closed
Labels
bugSomething isn't workingSomething isn't workingrealtimeThis issue or pull request is related to realtimeThis issue or pull request is related to realtime
Description
Flutter app subscribed to Realtime channel stops receiving events after a while (~15 minutes). The app has to be closed and reopened then events will be received again (for a while ~15 minutes).
Subscription code:
supabaseClient.channel('public:tbl_name').on(
RealtimeListenTypes.postgresChanges,
ChannelFilter(
event: 'UPDATE',
schema: 'public',
table: 'tbl_entry_queue'), (payload, [ref]) {
payload.forEach((key, value) {
if (key == 'new') {
value.forEach((key2, value2) {
// Processing code for "Payload"
});
}
});
}).subscribe();Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingrealtimeThis issue or pull request is related to realtimeThis issue or pull request is related to realtime