Versions in this module Expand all Collapse all v0 v0.1.1 Nov 17, 2022 v0.1.0 Oct 14, 2022 Changes in this version + func NewSQLiteStateStore(logger logger.Logger) state.Store + type DBAccess interface + 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(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) BulkDelete(req []state.DeleteRequest) error + func (s *SQLiteStore) BulkGet(req []state.GetRequest) (bool, []state.BulkGetResponse, error) + func (s *SQLiteStore) BulkSet(req []state.SetRequest) error + func (s *SQLiteStore) Close() error + func (s *SQLiteStore) Delete(req *state.DeleteRequest) error + func (s *SQLiteStore) Features() []state.Feature + func (s *SQLiteStore) Get(req *state.GetRequest) (*state.GetResponse, error) + func (s *SQLiteStore) Init(metadata state.Metadata) error + func (s *SQLiteStore) Multi(request *state.TransactionalStateRequest) error + func (s *SQLiteStore) Ping() error + func (s *SQLiteStore) Set(req *state.SetRequest) error