Table of Contents

Namespace Supabase.Realtime.PostgresChanges

Classes

PostgresChangesOptions

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}");
PostgresChangesPayload<T>

The payload.

PostgresChangesResponse

A postgres changes event.

PostgresChangesResponse<T>

A SocketResponse with support for Generically typed Payload

Enums

PostgresChangesOptions.ListenType

Mapping of postgres changes listener types