| 233 | } |
| 234 | |
| 235 | void ODServer::queueServerNotification(ServerNotification* n) |
| 236 | { |
| 237 | if ((n == nullptr) || (!isConnected())) |
| 238 | { |
| 239 | delete n; |
| 240 | return; |
| 241 | } |
| 242 | mServerNotificationQueue.push_back(n); |
| 243 | } |
| 244 | |
| 245 | void ODServer::sendAsyncMsg(ServerNotification& notif) |
| 246 | { |
no outgoing calls
no test coverage detected