package intf
// Callback is the interface to insert procedure to entity
type Callback interface {
OnInit()
OnStepBegin()
BeforeSpin()
BeforeDisplay()
AfterDisplay()
AfterSpin()
OnStepEnd()
OnStay()
}