server-go/servlet.go

11 lines
216 B
Go
Raw Normal View History

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