grpc.testing.HistogramParams
*/
class HistogramParams extends \Google\Protobuf\Internal\Message
{
/**
* first bucket is [0, 1 + resolution)
*
* Generated from protobuf field double resolution = 1;
*/
private $resolution = 0.0;
/**
* use enough buckets to allow this value
*
* Generated from protobuf field double max_possible = 2;
*/
private $max_possible = 0.0;
public function __construct() {
\GPBMetadata\Src\Proto\Grpc\Testing\Stats::initOnce();
parent::__construct();
}
/**
* first bucket is [0, 1 + resolution)
*
* Generated from protobuf field double resolution = 1;
* @return float
*/
public function getResolution()
{
return $this->resolution;
}
/**
* first bucket is [0, 1 + resolution)
*
* Generated from protobuf field double resolution = 1;
* @param float $var
* @return $this
*/
public function setResolution($var)
{
GPBUtil::checkDouble($var);
$this->resolution = $var;
return $this;
}
/**
* use enough buckets to allow this value
*
* Generated from protobuf field double max_possible = 2;
* @return float
*/
public function getMaxPossible()
{
return $this->max_possible;
}
/**
* use enough buckets to allow this value
*
* Generated from protobuf field double max_possible = 2;
* @param float $var
* @return $this
*/
public function setMaxPossible($var)
{
GPBUtil::checkDouble($var);
$this->max_possible = $var;
return $this;
}
}