| 52 | void messaging_handler::on_connection_close(connection &) {} |
| 53 | void messaging_handler::on_connection_error(connection &c) { on_error(c.error()); } |
| 54 | void messaging_handler::on_connection_open(connection &c) { |
| 55 | if (c.uninitialized()) { |
| 56 | pn_connection_open(unwrap(c)); |
| 57 | } |
| 58 | } |
| 59 | void messaging_handler::on_connection_wake(connection&) {} |
| 60 | |
| 61 | void messaging_handler::on_session_close(session &) {} |
no test coverage detected