| 560 | } |
| 561 | |
| 562 | void Provider::cancelConnections() |
| 563 | { |
| 564 | MutexLockGuard guard(m_mutex, FB_FUNCTION); |
| 565 | |
| 566 | AttToConnMap::Accessor acc(&m_connections); |
| 567 | if (acc.getFirst()) |
| 568 | { |
| 569 | do |
| 570 | { |
| 571 | Connection* conn = acc.current().m_conn; |
| 572 | conn->cancelExecution(false); |
| 573 | } while (acc.getNext()); |
| 574 | } |
| 575 | } |
| 576 | |
| 577 | // Connection |
| 578 |
no test coverage detected