2018-04-05 15:15:29 +00:00
|
|
|
package fasthttp
|
|
|
|
|
|
|
|
import (
|
|
|
|
"git.loafle.net/commons/server-go"
|
|
|
|
"git.loafle.net/commons/server-go/web"
|
|
|
|
"github.com/valyala/fasthttp"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Servlet interface {
|
|
|
|
web.Servlet
|
|
|
|
|
2018-04-06 05:50:20 +00:00
|
|
|
Handle(servletCtx server.ServletCtx, ctx *fasthttp.RequestCtx) *web.Error
|
2018-04-05 15:15:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Servlets struct {
|
|
|
|
Servlet
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Servlets) ServletCtx(serverCtx server.ServerCtx) server.ServletCtx {
|
|
|
|
return server.NewServletContext(nil, serverCtx)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Servlets) Init(serverCtx server.ServerCtx) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-04-09 12:48:14 +00:00
|
|
|
func (s *Servlets) OnStart(serverCtx server.ServerCtx) error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Servlets) OnStop(serverCtx server.ServerCtx) {
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
2018-04-05 15:15:29 +00:00
|
|
|
func (s *Servlets) Destroy(serverCtx server.ServerCtx) {
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
2018-04-06 05:50:20 +00:00
|
|
|
func (s *Servlets) Handle(servletCtx server.ServletCtx, ctx *fasthttp.RequestCtx) *web.Error {
|
2018-04-06 04:06:05 +00:00
|
|
|
return nil
|
2018-04-05 15:15:29 +00:00
|
|
|
}
|