start a thread whichs fetches online status and other infos data = [ .. () .. ]
(self, data, pid)
| 79 | self.threads.append(thread) |
| 80 | |
| 81 | def createInfoThread(self, data, pid): |
| 82 | """ |
| 83 | start a thread whichs fetches online status and other infos |
| 84 | data = [ .. () .. ] |
| 85 | """ |
| 86 | self.timestamp = time() + 5 * 60 |
| 87 | |
| 88 | PluginThread.InfoThread(self, data, pid) |
| 89 | |
| 90 | @lock |
| 91 | def createResultThread(self, data, add=False): |
no outgoing calls
no test coverage detected