Fix MConnection race condiiton

This commit is contained in:
Jae Kwon 2015-07-20 16:55:25 -07:00
parent c0a64d74be
commit 3a9b465c75
1 changed files with 2 additions and 2 deletions

View File

@ -129,11 +129,11 @@ func NewMConnection(conn net.Conn, chDescs []*ChannelDescriptor, onReceive recei
func (c *MConnection) AfterStart() {
c.quit = make(chan struct{})
go c.sendRoutine()
go c.recvRoutine()
c.flushTimer = NewThrottleTimer("flush", flushThrottleMS*time.Millisecond)
c.pingTimer = NewRepeatTimer("ping", pingTimeoutSeconds*time.Second)
c.chStatsTimer = NewRepeatTimer("chStats", updateStatsSeconds*time.Second)
go c.sendRoutine()
go c.recvRoutine()
}
func (c *MConnection) AfterStop() {