mirror of
https://gitee.com/WuKongDev/WuKongIM.git
synced 2025-12-06 14:59:08 +08:00
29 lines
533 B
Go
29 lines
533 B
Go
package server
|
|
|
|
// type reactorUserMessage struct {
|
|
// conn reactor.Conn
|
|
// frame wkproto.Frame
|
|
// index uint64
|
|
// toNodeId uint64
|
|
// }
|
|
|
|
// func (m *reactorUserMessage) Conn() reactor.Conn {
|
|
// return m.conn
|
|
// }
|
|
|
|
// func (m *reactorUserMessage) Frame() wkproto.Frame {
|
|
// return m.frame
|
|
// }
|
|
|
|
// func (m *reactorUserMessage) Size() uint64 {
|
|
// return 0
|
|
// }
|
|
|
|
// func (m *reactorUserMessage) SetIndex(index uint64) {
|
|
// m.index = index
|
|
// }
|
|
|
|
// func (m *reactorUserMessage) Index() uint64 {
|
|
// return m.index
|
|
// }
|