1
0
Fork 0

Process remote events in their own goroutines

This commit is contained in:
Aaron Lindsay 2013-09-05 19:59:45 -04:00
parent d97b424e98
commit fcf61701cc
1 changed files with 1 additions and 1 deletions

View File

@ -315,7 +315,7 @@ func ProcessRemoteEvent(globals AsinkGlobals, event *asink.Event) {
func ProcessRemoteEvents(globals AsinkGlobals, eventChan chan *asink.Event) {
for event := range eventChan {
ProcessRemoteEvent(globals, event)
go ProcessRemoteEvent(globals, event)
}
}