Namespace Supabase.Realtime.PostgresChanges | realtime-csharp (original) (raw)
Classes
Handles a postgres_changes
channel
For Example in the js client:
const databaseFilter = {
schema: 'public',
table: 'messages',
filter: `room_id=eq.${channelId}`,
event: 'INSERT',
}
Would translate to:
new PostgresChangesOptions("public", "messages", $"room_id=eq.{channelId}");
The payload.
A postgres changes event.
A SocketResponse with support for Generically typed Payload
Enums
PostgresChangesOptions.ListenType
Mapping of postgres changes listener types