driver

package
v0.1.0-alpha.10 Latest Latest
Warning

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

Go to latest
Published: Apr 14, 2025 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ListDeliveryRequest

type ListDeliveryRequest struct {
	EventID       string
	DestinationID string
}

type ListEventByDestinationRequest

type ListEventByDestinationRequest struct {
	TenantID      string // required
	DestinationID string // required
	Status        string // optional, "success", "failed"
	Cursor        string
	Limit         int
}

type ListEventRequest

type ListEventRequest struct {
	Next           string
	Prev           string
	Limit          int
	Start          *time.Time // optional - lower bound, default End - 1h
	End            *time.Time // optional - upper bound, default now()
	TenantID       string     // required
	DestinationIDs []string   // optional
	Status         string     // optional, "success", "failed"
	Topics         []string   // optional
}

type ListEventResponse

type ListEventResponse struct {
	Data  []*models.Event
	Next  string
	Prev  string
	Count int64
}

type LogStore

type LogStore interface {
	ListEvent(context.Context, ListEventRequest) (ListEventResponse, error)
	RetrieveEvent(ctx context.Context, tenantID, eventID string) (*models.Event, error)
	RetrieveEventByDestination(ctx context.Context, tenantID, destinationID, eventID string) (*models.Event, error)
	ListDelivery(ctx context.Context, request ListDeliveryRequest) ([]*models.Delivery, error)
	InsertManyDeliveryEvent(context.Context, []*models.DeliveryEvent) error
}

Jump to

Keyboard shortcuts

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