| 12345678910111213141516171819202122232425262728293031323334 |
- package nnet
- import "time"
- var (
- DEF_SESSION_ID uint64 = 0
- RUBBISH_SESSION_ID uint64 = 1
- )
- type ISession interface {
- Do() // session 开始工作
- Close(int32) // 停止所有工作
- IsClosed() bool
- Write(IPacket, time.Duration) error
- AWrite(IPacket, time.Duration) error // 异步发送
- GetData() interface{} // 辅助数据
- SetData(interface{})
- UpdateId(uint64) //更新ID
- Id() uint64
- SetId(uint64)
- GetRawConn() IConn
- }
- type ISessionCallback interface {
- OnClosed(ISession, int32)
- OnConnected(ISession) (bool, int32)
- OnMessage(ISession, IPacket) bool
- OnHeartbeat(ISession) bool
- }
|