erinn
/
ui
forked from cwtch.im/ui
1
0
Fork 0
ui/go/characters/grouppoller.go

22 lines
463 B
Go

package characters
import (
"cwtch.im/ui/go/gobjects"
"cwtch.im/ui/go/the"
"time"
)
func GroupPoller(getContact func(string) *gobjects.Contact, updateContact func(string)) {
for {
time.Sleep(time.Second * 4)
servers := the.Peer.GetServers()
groups := the.Peer.GetGroups()
for i := range groups {
group := the.Peer.GetGroup(groups[i])
getContact(group.GroupID).Status = int(servers[group.GroupServer])
updateContact(group.GroupID)
}
}
}