| 83 | proton::work notify_work_; |
| 84 | |
| 85 | void close (proton::connection &c) { |
| 86 | if (closing_) return; |
| 87 | |
| 88 | c.close(proton::error_condition("amqp:connection:forced", "Failover testing")); |
| 89 | closing_ = true; |
| 90 | } |
| 91 | |
| 92 | public: |
| 93 | server_connection_handler(proton::container& c, int a, waiter& w) |
no test coverage detected