Example #1
0
 void push(const std::string& d) {
   if (model_) {
     Diff diff;
     unpack_(d, diff);
     push_impl(diff);
   } else {
     throw JUBATUS_EXCEPTION(common::config_not_set());
   }
 }
 inline void push_back(pointer value) {
     assert(value != nullptr);
     push_impl(new node(value));
 }
bool mixable_versioned_table::put_diff_impl(
    const std::vector<std::string>& diff) {
  // TODO(beam2d): Skip rows whose owner is this server.
  push_impl(diff);
  return true;
}