package ws
type IConn interface {
Addr() string
NotifyClose()
SendMsg(data []byte) error
Name() string
Id() uint32
UserId() int64
Log(format string, v ...interface{}) string
}