source

package
v0.0.59 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 14, 2024 License: Apache-2.0 Imports: 20 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ReceiverQueueSize = 5000

Functions

This section is empty.

Types

type BaseSource

type BaseSource struct {
	ReadTimeout time.Duration
	// contains filtered or unexported fields
}

func (*BaseSource) Capture

func (b *BaseSource) Capture(cp cursor.Checkpoint) (changes chan Change, err error)

func (*BaseSource) Commit

func (b *BaseSource) Commit(cp cursor.Checkpoint)

func (*BaseSource) Error

func (b *BaseSource) Error() error

func (*BaseSource) Stop

func (b *BaseSource) Stop() error

type CaptureFn

type CaptureFn func(changes chan Change) error

type Change

type Change struct {
	Checkpoint cursor.Checkpoint
	Message    *pb.Message
}

type FlushFn

type FlushFn func()

type PGXSource

type PGXSource struct {
	BaseSource

	SetupConnStr      string
	ReplConnStr       string
	ReplSlot          string
	CreateSlot        bool
	CreatePublication bool
	StartLSN          string
	DecodePlugin      string
	// contains filtered or unexported fields
}

func (*PGXSource) Capture

func (p *PGXSource) Capture(cp cursor.Checkpoint) (changes chan Change, err error)

func (*PGXSource) Commit

func (p *PGXSource) Commit(cp cursor.Checkpoint)

func (*PGXSource) Requeue

func (p *PGXSource) Requeue(cp cursor.Checkpoint, reason string)

func (*PGXSource) TxCounter

func (p *PGXSource) TxCounter() uint64

type PulsarConsumerSource

type PulsarConsumerSource struct {
	BaseSource

	PulsarOption         pulsar.ClientOptions
	PulsarTopic          string
	PulsarSubscription   string
	PulsarReplicateState bool
	PulsarMaxReconnect   *uint
	// contains filtered or unexported fields
}

func (*PulsarConsumerSource) Capture

func (p *PulsarConsumerSource) Capture(cp cursor.Checkpoint) (changes chan Change, err error)

func (*PulsarConsumerSource) Commit

func (p *PulsarConsumerSource) Commit(cp cursor.Checkpoint)

func (*PulsarConsumerSource) Requeue

func (p *PulsarConsumerSource) Requeue(cp cursor.Checkpoint, reason string)

type PulsarReaderSource

type PulsarReaderSource struct {
	BaseSource

	PulsarOption pulsar.ClientOptions
	PulsarTopic  string
	// contains filtered or unexported fields
}

func (*PulsarReaderSource) Capture

func (p *PulsarReaderSource) Capture(cp cursor.Checkpoint) (changes chan Change, err error)

func (*PulsarReaderSource) Commit

func (p *PulsarReaderSource) Commit(cp cursor.Checkpoint)

type ReadFn

type ReadFn func(ctx context.Context) (Change, error)

type RequeueSource

type RequeueSource interface {
	Source
	Requeue(cp cursor.Checkpoint, reason string)
}

type Source

type Source interface {
	Capture(cp cursor.Checkpoint) (changes chan Change, err error)
	Commit(cp cursor.Checkpoint)
	Error() error
	Stop() error
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL