Documentation
¶
Overview ¶
Package branch contains the core branch service interface.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrGasLimitExceeded = errors.New("branch: gas limit exceeded")
ErrGasLimitExceeded is returned when the gas limit is exceeded in a Service.ExecuteWithGasLimit call.
Functions ¶
This section is empty.
Types ¶
type Service ¶
type Service interface {
// Execute executes the given function in an isolated context. If the
// `f` function returns an error, the execution is considered failed,
// and every change made affecting the execution context is rolled back.
// If the function returns nil, the execution is considered successful, and
// committed.
// The context.Context passed to the `f` function is a child of the context
// passed to the Execute function, and is what should be used with other
// core services in order to ensure the execution remains isolated.
Execute(ctx context.Context, f func(ctx context.Context) error) error
// ExecuteWithGasLimit executes the given function `f` in an isolated context,
// with the provided gas limit, this is advanced usage and is used to disallow
// an execution path to consume an indefinite amount of gas.
// If the execution fails or succeeds the gas limit is still applied to the
// parent context, the function returns a gasUsed value which is the amount
// of gas used by the execution path. If the execution path exceeds the gas
// ErrGasLimitExceeded is returned.
ExecuteWithGasLimit(ctx context.Context, gasLimit uint64, f func(ctx context.Context) error) (gasUsed uint64, err error)
}
Service is the branch service interface. It can be used to execute code paths in an isolated execution context that can be reverted. A revert typically means a rollback on events and state changes.
Click to show internal directories.
Click to hide internal directories.