You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngs/component/component.go

17 lines
294 B
Go

package component
// Component 具体组件的接口.
type Component interface {
// Init 初始化组件时调用.
Init()
// AfterInit 初始化组件后调用.
AfterInit()
// BeforeShutdown 组件被停止前调用.
BeforeShutdown()
// Shutdown 停止组件时调用.
Shutdown()
}