server-go/servlet.go

11 lines
216 B
Go
Raw Normal View History

2018-04-03 08:55:48 +00:00
package server
type Servlet interface {
2018-04-04 04:01:26 +00:00
ServletCtx(serverCtx ServerCtx) ServletCtx
Init(serverCtx ServerCtx) error
2018-04-09 12:48:14 +00:00
OnStart(serverCtx ServerCtx) error
OnStop(serverCtx ServerCtx)
2018-04-04 04:01:26 +00:00
Destroy(serverCtx ServerCtx)
2018-04-03 08:55:48 +00:00
}