grpc.testing.LoadParams
*/
class LoadParams extends \Google\Protobuf\Internal\Message
{
protected $load;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Grpc\Testing\ClosedLoopParams $closed_loop
* @type \Grpc\Testing\PoissonParams $poisson
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Src\Proto\Grpc\Testing\Control::initOnce();
parent::__construct($data);
}
/**
* Generated from protobuf field .grpc.testing.ClosedLoopParams closed_loop = 1;
* @return \Grpc\Testing\ClosedLoopParams
*/
public function getClosedLoop()
{
return $this->readOneof(1);
}
/**
* Generated from protobuf field .grpc.testing.ClosedLoopParams closed_loop = 1;
* @param \Grpc\Testing\ClosedLoopParams $var
* @return $this
*/
public function setClosedLoop($var)
{
GPBUtil::checkMessage($var, \Grpc\Testing\ClosedLoopParams::class);
$this->writeOneof(1, $var);
return $this;
}
/**
* Generated from protobuf field .grpc.testing.PoissonParams poisson = 2;
* @return \Grpc\Testing\PoissonParams
*/
public function getPoisson()
{
return $this->readOneof(2);
}
/**
* Generated from protobuf field .grpc.testing.PoissonParams poisson = 2;
* @param \Grpc\Testing\PoissonParams $var
* @return $this
*/
public function setPoisson($var)
{
GPBUtil::checkMessage($var, \Grpc\Testing\PoissonParams::class);
$this->writeOneof(2, $var);
return $this;
}
/**
* @return string
*/
public function getLoad()
{
return $this->whichOneof("load");
}
}