Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Config ¶
type Config struct { ClickHouse *clickhouse.ClickHouseConfig Postgres *string }
type DriverOpts ¶
type DriverOpts struct { CH clickhouse.DB PG *pgxpool.Pool }
func MakeDriverOpts ¶
func MakeDriverOpts(cfg Config) (DriverOpts, error)
func (*DriverOpts) Close ¶
func (d *DriverOpts) Close() error
type ListDeliveryRequest ¶
type ListDeliveryRequest = driver.ListDeliveryRequest
type ListEventRequest ¶
type ListEventRequest = driver.ListEventRequest
type LogStore ¶
type LogStore interface { ListEvent(context.Context, ListEventRequest) ([]*models.Event, string, error) RetrieveEvent(ctx context.Context, tenantID, eventID string) (*models.Event, error) ListDelivery(ctx context.Context, request ListDeliveryRequest) ([]*models.Delivery, error) InsertManyEvent(context.Context, []*models.Event) error InsertManyDelivery(context.Context, []*models.Delivery) error }
func NewLogStore ¶
func NewLogStore(ctx context.Context, driverOpts DriverOpts) (LogStore, error)
func NewNoopLogStore ¶
func NewNoopLogStore() LogStore
Click to show internal directories.
Click to hide internal directories.