Versions in this module Expand all Collapse all v1 v1.15.1 Jun 9, 2025 Changes in this version + func NewSQLiteStateStore(logger logger.Logger) state.Store + type DBAccess interface + BulkGet func(ctx context.Context, req []state.GetRequest) ([]state.BulkGetResponse, error) + Close func() error + Delete func(ctx context.Context, req *state.DeleteRequest) error + ExecuteMulti func(ctx context.Context, reqs []state.TransactionalStateOperation) error + Get func(ctx context.Context, req *state.GetRequest) (*state.GetResponse, error) + Init func(ctx context.Context, metadata state.Metadata) error + Ping func(ctx context.Context) error + Set func(ctx context.Context, req *state.SetRequest) error + type SQLiteStore struct + func (s *SQLiteStore) BulkGet(ctx context.Context, req []state.GetRequest, _ state.BulkGetOpts) ([]state.BulkGetResponse, error) + func (s *SQLiteStore) Close() error + func (s *SQLiteStore) Delete(ctx context.Context, req *state.DeleteRequest) error + func (s *SQLiteStore) Features() []state.Feature + func (s *SQLiteStore) Get(ctx context.Context, req *state.GetRequest) (*state.GetResponse, error) + func (s *SQLiteStore) GetComponentMetadata() (metadataInfo metadata.MetadataMap) + func (s *SQLiteStore) GetDBAccess() *sqliteDBAccess + func (s *SQLiteStore) Init(ctx context.Context, metadata state.Metadata) error + func (s *SQLiteStore) Multi(ctx context.Context, request *state.TransactionalStateRequest) error + func (s *SQLiteStore) Ping(ctx context.Context) error + func (s *SQLiteStore) Set(ctx context.Context, req *state.SetRequest) error