Documentation ¶
Index ¶
- Constants
- Variables
- type Module
- func (m *Module) AutoMigrate() error
- func (m *Module) ClearCtx()
- func (m *Module) ExtractEventStatements(ctx context.Context, block *tmctypes.ResultBlock, txHash common.Hash, ...) (map[string][]interface{}, error)
- func (m *Module) GetCtx(key string) interface{}
- func (m *Module) HandleEvent(ctx context.Context, block *tmctypes.ResultBlock, txHash common.Hash, ...) error
- func (m *Module) Name() string
- func (m *Module) PrepareTables() error
- func (m *Module) SetCtx(key string, val interface{})
Constants ¶
View Source
const (
ModuleName = "object"
)
Variables ¶
View Source
var ( EventCreateObject = proto.MessageName(&storagetypes.EventCreateObject{}) EventCancelCreateObject = proto.MessageName(&storagetypes.EventCancelCreateObject{}) EventSealObject = proto.MessageName(&storagetypes.EventSealObject{}) EventCopyObject = proto.MessageName(&storagetypes.EventCopyObject{}) EventDeleteObject = proto.MessageName(&storagetypes.EventDeleteObject{}) EventRejectSealObject = proto.MessageName(&storagetypes.EventRejectSealObject{}) EventDiscontinueObject = proto.MessageName(&storagetypes.EventDiscontinueObject{}) EventUpdateObjectInfo = proto.MessageName(&storagetypes.EventUpdateObjectInfo{}) EventUpdateObjectContent = proto.MessageName(&storagetypes.EventUpdateObjectContent{}) EventUpdateObjectContentSuccess = proto.MessageName(&storagetypes.EventUpdateObjectContentSuccess{}) EventCancelUpdateObjectContent = proto.MessageName(&storagetypes.EventCancelUpdateObjectContent{}) )
View Source
var ObjectEvents = map[string]bool{ EventCreateObject: true, EventCancelCreateObject: true, EventSealObject: true, EventCopyObject: true, EventDeleteObject: true, EventRejectSealObject: true, EventDiscontinueObject: true, EventUpdateObjectInfo: true, EventUpdateObjectContent: true, EventUpdateObjectContentSuccess: true, EventCancelUpdateObjectContent: true, }
Functions ¶
This section is empty.
Types ¶
type Module ¶
type Module struct {
// contains filtered or unexported fields
}
Module represents the object module
func (*Module) ClearCtx ¶ added in v1.2.0
func (m *Module) ClearCtx()
ClearCtx resets the module's context to a new, empty context. This effectively removes all key-value pairs previously stored in the context. This can be used for cleanup or reinitialization purposes.
func (*Module) ExtractEventStatements ¶
func (*Module) GetCtx ¶ added in v1.2.0
GetCtx retrieves the value associated with a given key from the module's context. If the key exists in the context, it returns the value; otherwise, it returns nil. This is commonly used to access data that was previously stored with Set.
func (*Module) HandleEvent ¶
Click to show internal directories.
Click to hide internal directories.