| 95 | |
| 96 | public: |
| 97 | Sender(proton::sender s) : |
| 98 | sender_(s), work_queue_(s.work_queue()), queue_(0), pending_credit_(0) |
| 99 | { |
| 100 | s.user_data(this); |
| 101 | } |
| 102 | |
| 103 | bool add(proton::work f) { |
| 104 | return work_queue_.add(f); |
nothing calls this directly
no test coverage detected