grpc.testing.HistogramParams
*/
class HistogramParams extends \Google\Protobuf\Internal\Message
{
/**
* first bucket is [0, 1 + resolution)
*
* Generated from protobuf field double resolution = 1;
*/
protected $resolution = 0.0;
/**
* use enough buckets to allow this value
*
* Generated from protobuf field double max_possible = 2;
*/
protected $max_possible = 0.0;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type float $resolution
* first bucket is [0, 1 + resolution)
* @type float $max_possible
* use enough buckets to allow this value
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Src\Proto\Grpc\Testing\Stats::initOnce();
parent::__construct($data);
}
/**
* 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;
}
}