add async writes to broadcast

This commit is contained in:
Ola Holmström
2015-06-13 05:42:44 +02:00
parent a4a05021d7
commit facd4b1d69
2 changed files with 2 additions and 4 deletions
+2 -2
View File
@@ -31,10 +31,10 @@ func (h *hub) run() {
for s := range h.sessions {
if m.filter != nil {
if m.filter(s) {
s.writeMessage(m)
go s.writeMessage(m)
}
} else {
s.writeMessage(m)
go s.writeMessage(m)
}
}
}
-2
View File
@@ -167,7 +167,6 @@ func TestUpgrader(t *testing.T) {
}
}
/*
func TestBroadcast(t *testing.T) {
broadcast := NewTestServer()
broadcast.m.HandleMessage(func(session *Session, msg []byte) {
@@ -212,7 +211,6 @@ func TestBroadcast(t *testing.T) {
t.Error(err)
}
}
*/
func TestBroadcastOthers(t *testing.T) {
broadcast := NewTestServer()