test
This commit is contained in:
parent
4a16193666
commit
54022a26a8
4
main.go
4
main.go
@ -50,7 +50,7 @@ var (
|
|||||||
TGCmdQueue chan TGCommand
|
TGCmdQueue chan TGCommand
|
||||||
MQTGCmdQueue chan TGCommand
|
MQTGCmdQueue chan TGCommand
|
||||||
msgParsingRules map[int]MessageParsingRule
|
msgParsingRules map[int]MessageParsingRule
|
||||||
clientsQueues map[int64]MQKeepAlive
|
clientsQueues map[int64]*MQKeepAlive
|
||||||
)
|
)
|
||||||
|
|
||||||
func PrintText(m *tb.Message) {
|
func PrintText(m *tb.Message) {
|
||||||
@ -108,7 +108,7 @@ func main() {
|
|||||||
SQLMsgIdentifyQueue = make(chan int64, 100)
|
SQLMsgIdentifyQueue = make(chan int64, 100)
|
||||||
TGCmdQueue = make(chan TGCommand, 100)
|
TGCmdQueue = make(chan TGCommand, 100)
|
||||||
MQTGCmdQueue = make(chan TGCommand, 100)
|
MQTGCmdQueue = make(chan TGCommand, 100)
|
||||||
clientsQueues = make(map[int64]MQKeepAlive)
|
clientsQueues = make(map[int64]*MQKeepAlive)
|
||||||
|
|
||||||
for w := 1; w <= MQGetMsgWorkers; w++ {
|
for w := 1; w <= MQGetMsgWorkers; w++ {
|
||||||
go MQGetMsgWorker(w, MQCWMsgQueue)
|
go MQGetMsgWorker(w, MQCWMsgQueue)
|
||||||
|
Loading…
Reference in New Issue
Block a user