add comment

This commit is contained in:
2019-11-14 14:50:19 +08:00
parent 2cf31950e2
commit 0ca8a71e8d
2 changed files with 30 additions and 2 deletions
+18
View File
@@ -9,11 +9,14 @@ import (
var connc net.Conn
var clientSign map[string]chan string
var clientStopSign chan int
func init() {
clientStopSign = make(chan int)
clientSign = make(map[string]chan string)
}
// Notify 用于获取一个通知
func Notify(key string) chan string {
if _, ok := clientSign[key]; !ok {
ch := make(chan string, 5)
@@ -32,6 +35,7 @@ func store(key, value string) {
clientSign[key] <- value
}
// NewNotifyC 用于新建一个Client端进程
func NewNotifyC(netype, value string) error {
var err error
connc, err = net.Dial(netype, value)
@@ -41,6 +45,12 @@ func NewNotifyC(netype, value string) error {
go cnotify()
go func() {
for {
select {
case <-clientStopSign:
connc.Close()
break
default:
}
buf := make([]byte, 8192)
n, err := connc.Read(buf)
Queue.ParseMessage(buf[0:n], connc)
@@ -55,6 +65,7 @@ func NewNotifyC(netype, value string) error {
return nil
}
// Send 用于向Server端发送数据
func Send(name string) error {
_, err := connc.Write(Queue.BuildMessage(name))
return err
@@ -63,6 +74,8 @@ func Send(name string) error {
func cnotify() {
for {
select {
case <-clientStopSign:
break
case <-notifychan:
break
default:
@@ -79,3 +92,8 @@ func cnotify() {
go store(strs[0], strs[1])
}
}
// ClientStop 终止client端运行
func ClientStop() {
clientStopSign <- 0
}