| 166 | } // initializeOperatorState |
| 167 | |
| 168 | void |
| 169 | EdgeDataSynchronization::resetTransactionComponent(const SynchronizationTransactionComponent& transaction_comp) |
| 170 | { |
| 171 | #if !defined(NDEBUG) |
| 172 | TBOX_ASSERT(d_is_initialized); |
| 173 | #endif |
| 174 | if (d_transaction_comps.size() != 1) |
| 175 | { |
| 176 | TBOX_ERROR("EdgeDataSynchronization::resetTransactionComponent():" |
| 177 | << " invalid reset operation. attempting to change the number of registered " |
| 178 | "synchronization transaction components.\n"); |
| 179 | } |
| 180 | resetTransactionComponents(std::vector<SynchronizationTransactionComponent>(1, transaction_comp)); |
| 181 | return; |
| 182 | } // resetTransactionComponent |
| 183 | |
| 184 | void |
| 185 | EdgeDataSynchronization::resetTransactionComponents( |
no test coverage detected