3 // $Id: Sample_History.inl 80826 2008-03-04 14:51:23Z wotte $
5 ACE_BEGIN_VERSIONED_NAMESPACE_DECL
8 ACE_Sample_History::sample (ACE_UINT64 value)
10 if (this->sample_count_ >= this->max_samples_)
13 this->samples_[this->sample_count_++] = value;
18 ACE_Sample_History::get_sample (size_t i) const
20 if (this->sample_count_ <= i)
23 return this->samples_[i];
26 ACE_END_VERSIONED_NAMESPACE_DECL