void Marker::accumulate_into (ACE_Throughput_Stats &throughput, int which_method) const { switch (which_method) { case 1: // method ready throughput.accumulate (this->throughput_method_ready_); break; case 2: // method authenticate throughput.accumulate (this->throughput_method_authenticate_); break; case 3: // method update_records throughput.accumulate (this->throughput_method_update_records_); break; default: break; } }
void EC_Consumer::accumulate (ACE_Throughput_Stats& throughput) const { throughput.accumulate (this->throughput_); }
void EC_Supplier::accumulate (ACE_Throughput_Stats& stats) const { stats.accumulate (this->throughput_); }
void Test_Consumer::accumulate (ACE_Throughput_Stats& stats) const { stats.accumulate (this->throughput_); }