コード例 #1
0
ファイル: marker.cpp プロジェクト: OspreyHub/ATCD
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;
    }

}
コード例 #2
0
ファイル: Consumer.cpp プロジェクト: CCJY/ATCD
void
EC_Consumer::accumulate (ACE_Throughput_Stats& throughput) const
{
  throughput.accumulate (this->throughput_);
}
コード例 #3
0
ファイル: Supplier.cpp プロジェクト: asdlei00/ACE
void
EC_Supplier::accumulate (ACE_Throughput_Stats& stats) const
{
  stats.accumulate (this->throughput_);
}
コード例 #4
0
ファイル: ECT_Consumer.cpp プロジェクト: OspreyHub/ATCD
void
Test_Consumer::accumulate (ACE_Throughput_Stats& stats) const
{
  stats.accumulate (this->throughput_);
}