| 18 | } |
| 19 | |
| 20 | void MessageInterface::Destroy(){ |
| 21 | active = false; |
| 22 | |
| 23 | for(auto& i : incoming){ |
| 24 | i->item1 = -1; |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | long MessageInterface::Accept(FancyRefPtr<MessageEndpoint>& endpoint){ |
| 29 | acquireLock(&incomingLock); |
nothing calls this directly
no outgoing calls
no test coverage detected