Versions in this module Expand all Collapse all v1 v1.15.1 Jun 9, 2025 Changes in this version + type GetRequest struct + Keys []string + Metadata map[string]string + type GetResponse struct + Items map[string]*Item + type Item struct + Metadata map[string]string + Value string + Version string + type Metadata struct + type Store interface + Get func(ctx context.Context, req *GetRequest) (*GetResponse, error) + Init func(ctx context.Context, metadata Metadata) error + Subscribe func(ctx context.Context, req *SubscribeRequest, handler UpdateHandler) (string, error) + Unsubscribe func(ctx context.Context, req *UnsubscribeRequest) error + type SubscribeRequest struct + Keys []string + Metadata map[string]string + type UnsubscribeRequest struct + ID string + type UpdateEvent struct + ID string + Items map[string]*Item + type UpdateHandler func(ctx context.Context, e *UpdateEvent) error