| 103 | }; |
| 104 | |
| 105 | StoreSelectorDefault::StoreSelectorDefault(const int topic_id, const int pub_id, |
| 106 | const uint64_t uin, const bool retry_switch_store) |
| 107 | : impl_(new StoreSelectorDefaultImpl()) { |
| 108 | assert(impl_); |
| 109 | impl_->topic_id = topic_id; |
| 110 | impl_->pub_id = pub_id; |
| 111 | impl_->uin = uin; |
| 112 | impl_->retry_switch_store = retry_switch_store; |
| 113 | impl_->retry = 0; |
| 114 | } |
| 115 | |
| 116 | StoreSelectorDefault::~StoreSelectorDefault() {} |
| 117 |
nothing calls this directly
no outgoing calls
no test coverage detected