creates a thread to fetch online status, returns result id
(self, data, add=False)
| 89 | |
| 90 | @lock |
| 91 | def createResultThread(self, data, add=False): |
| 92 | """ creates a thread to fetch online status, returns result id """ |
| 93 | self.timestamp = time() + 5 * 60 |
| 94 | |
| 95 | rid = self.resultIDs |
| 96 | self.resultIDs += 1 |
| 97 | |
| 98 | PluginThread.InfoThread(self, data, rid=rid, add=add) |
| 99 | |
| 100 | return rid |
| 101 | |
| 102 | |
| 103 | @lock |
no outgoing calls
no test coverage detected