| 40 | }; |
| 41 | |
| 42 | QueueSelectorDefault::QueueSelectorDefault(const int topic_id, const int pub_id, const uint64_t uin, const int count, const bool retry_switch_queue) : impl_(new QueueSelectorDefaultImpl()){ |
| 43 | assert(impl_); |
| 44 | impl_->topic_id = topic_id; |
| 45 | impl_->pub_id = pub_id; |
| 46 | impl_->uin = uin; |
| 47 | impl_->count = count; |
| 48 | impl_->retry_switch_queue = retry_switch_queue; |
| 49 | impl_->retry = 0; |
| 50 | } |
| 51 | |
| 52 | QueueSelectorDefault::~QueueSelectorDefault() { |
| 53 | } |
nothing calls this directly
no outgoing calls
no test coverage detected