Documentation ¶
Index ¶
- func NewOracleDatabaseStateStore(logger logger.Logger) state.Store
- type OracleDatabase
- func (o *OracleDatabase) BulkDelete(ctx context.Context, req []state.DeleteRequest) error
- func (o *OracleDatabase) BulkGet(ctx context.Context, req []state.GetRequest) (bool, []state.BulkGetResponse, error)
- func (o *OracleDatabase) BulkSet(ctx context.Context, req []state.SetRequest) error
- func (o *OracleDatabase) Close() error
- func (o *OracleDatabase) Delete(ctx context.Context, req *state.DeleteRequest) error
- func (o *OracleDatabase) Features() []state.Feature
- func (o *OracleDatabase) Get(ctx context.Context, req *state.GetRequest) (*state.GetResponse, error)
- func (o *OracleDatabase) GetComponentMetadata() map[string]string
- func (o *OracleDatabase) Init(metadata state.Metadata) error
- func (o *OracleDatabase) Multi(ctx context.Context, request *state.TransactionalStateRequest) error
- func (o *OracleDatabase) Ping() error
- func (o *OracleDatabase) Set(ctx context.Context, req *state.SetRequest) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type OracleDatabase ¶
type OracleDatabase struct {
// contains filtered or unexported fields
}
Oracle Database state store.
func (*OracleDatabase) BulkDelete ¶
func (o *OracleDatabase) BulkDelete(ctx context.Context, req []state.DeleteRequest) error
BulkDelete removes multiple entries from the store.
func (*OracleDatabase) BulkGet ¶
func (o *OracleDatabase) BulkGet(ctx context.Context, req []state.GetRequest) (bool, []state.BulkGetResponse, error)
BulkGet performs a bulks get operations.
func (*OracleDatabase) BulkSet ¶
func (o *OracleDatabase) BulkSet(ctx context.Context, req []state.SetRequest) error
BulkSet adds/updates multiple entities on store.
func (*OracleDatabase) Delete ¶
func (o *OracleDatabase) Delete(ctx context.Context, req *state.DeleteRequest) error
Delete removes an entity from the store.
func (*OracleDatabase) Features ¶
func (o *OracleDatabase) Features() []state.Feature
Features returns the features available in this state store.
func (*OracleDatabase) Get ¶
func (o *OracleDatabase) Get(ctx context.Context, req *state.GetRequest) (*state.GetResponse, error)
Get returns an entity from store.
func (*OracleDatabase) GetComponentMetadata ¶ added in v1.10.1
func (o *OracleDatabase) GetComponentMetadata() map[string]string
func (*OracleDatabase) Init ¶
func (o *OracleDatabase) Init(metadata state.Metadata) error
Init initializes the SQL server state store.
func (*OracleDatabase) Multi ¶
func (o *OracleDatabase) Multi(ctx context.Context, request *state.TransactionalStateRequest) error
Multi handles multiple transactions. Implements TransactionalStore.
func (*OracleDatabase) Ping ¶
func (o *OracleDatabase) Ping() error
func (*OracleDatabase) Set ¶
func (o *OracleDatabase) Set(ctx context.Context, req *state.SetRequest) error
Set adds/updates an entity on store.
Click to show internal directories.
Click to hide internal directories.