- setCollection:aCollection Sets the collection of objects that will be probed.
- createEnd
Phase: Using
- update The update method runs through the collection calling the selector on each object.
- (double)getAverage The getAverage method averages the values the averager collects. The total and count are read out of the object to compute the average.
- (double)getTotal The getTotal method sums the values the averager collects. The value is read out of the object, not computed everytime it is asked for.
- (double)getMin The getMin method returns the minimum value the averager collects. The value is read out of the object, not computed everytime it is asked for.
- (unsigned)getCount The getCount method returns the number of values the averager collects.