Versions in this module Expand all Collapse all v0 v0.0.2 Sep 18, 2021 v0.0.1 Sep 18, 2021 Changes in this version + type IWrapper interface + HandlerFunc func(context echo.Context) error + OnConnect func(nsp string, f func(echo.Context, socketio.Conn) error) + OnDisconnect func(nsp string, f func(echo.Context, socketio.Conn, string)) + OnError func(nsp string, f func(echo.Context, error)) + OnEvent func(nsp, event string, f func(echo.Context, socketio.Conn, string)) + type Wrapper struct + Context echo.Context + Server *socketio.Server + func NewWrapper(options *engineio.Options) (*Wrapper, error) + func NewWrapperWithServer(server *socketio.Server) (*Wrapper, error) + func (s *Wrapper) HandlerFunc(context echo.Context) error + func (s *Wrapper) OnConnect(nsp string, f func(echo.Context, socketio.Conn) error) + func (s *Wrapper) OnDisconnect(nsp string, f func(echo.Context, socketio.Conn, string)) + func (s *Wrapper) OnError(nsp string, f func(echo.Context, error)) + func (s *Wrapper) OnEvent(nsp, event string, f func(echo.Context, socketio.Conn, string))