Documentation ¶
Index ¶
- type Agent
- type Conn
- type ConnSet
- type MessageParser
- type MsgParser
- func (p *MsgParser) Close(conn *TCPConn)
- func (p *MsgParser) Conn(conn *TCPConn)
- func (p *MsgParser) Read(conn *TCPConn) ([]byte, error)
- func (p *MsgParser) SetByteOrder(littleEndian bool)
- func (p *MsgParser) SetMsgLen(lenMsgLen int, minMsgLen uint32, maxMsgLen uint32)
- func (p *MsgParser) Write(conn *TCPConn, args ...[]byte) error
- type Processor
- type TCPClient
- type TCPConn
- func (tcpConn *TCPConn) Close()
- func (tcpConn *TCPConn) Conn()
- func (tcpConn *TCPConn) DeConn()
- func (tcpConn *TCPConn) Destroy()
- func (tcpConn *TCPConn) LocalAddr() net.Addr
- func (tcpConn *TCPConn) Read(b []byte) (int, error)
- func (tcpConn *TCPConn) ReadMsg() ([]byte, error)
- func (tcpConn *TCPConn) RemoteAddr() net.Addr
- func (tcpConn *TCPConn) Write(b []byte)
- func (tcpConn *TCPConn) WriteMsg(args ...[]byte) error
- type TCPServer
- type WSClient
- type WSConn
- func (wsConn *WSConn) Close()
- func (wsConn *WSConn) Conn()
- func (wsConn *WSConn) DeConn()
- func (wsConn *WSConn) Destroy()
- func (wsConn *WSConn) LocalAddr() net.Addr
- func (wsConn *WSConn) ReadMsg() ([]byte, error)
- func (wsConn *WSConn) RemoteAddr() net.Addr
- func (wsConn *WSConn) WriteMsg(args ...[]byte) error
- type WSHandler
- type WSServer
- type WebsocketConnSet
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MessageParser ¶
type MsgParser ¶
type MsgParser struct {
// contains filtered or unexported fields
}
-------------- | len | data | --------------
func NewMsgParser ¶
func NewMsgParser() *MsgParser
func (*MsgParser) SetByteOrder ¶
It's dangerous to call the method on reading or writing
type TCPClient ¶
type TCPClient struct { sync.Mutex Addr string ConnNum int ConnectInterval time.Duration PendingWriteNum int AutoReconnect bool NewAgent func(*TCPConn) Agent // msg parser LenMsgLen int MinMsgLen uint32 MaxMsgLen uint32 LittleEndian bool MsgParser MessageParser // contains filtered or unexported fields }
type TCPConn ¶
func (*TCPConn) RemoteAddr ¶
type TCPServer ¶
type WSClient ¶
type WSConn ¶
func (*WSConn) RemoteAddr ¶
type WSServer ¶
type WebsocketConnSet ¶
Source Files ¶
Click to show internal directories.
Click to hide internal directories.