* Client-streaming request.
*
*
* Protobuf type grpc.testing.StreamingInputCallRequest
*/
class StreamingInputCallRequest extends \Google\Protobuf\Internal\Message
{
/**
*
* Optional input payload sent along with the request. ** *
.grpc.testing.Payload payload = 1;
*/
private $payload = null;
/**
* * Whether the server should expect this request to be compressed. This field * is "nullable" in order to interoperate seamlessly with servers not able to * implement the full compression tests by introspecting the call to verify * the request's compression status. ** *
.grpc.testing.BoolValue expect_compressed = 2;
*/
private $expect_compressed = null;
public function __construct() {
\GPBMetadata\Src\Proto\Grpc\Testing\Messages::initOnce();
parent::__construct();
}
/**
* * Optional input payload sent along with the request. ** *
.grpc.testing.Payload payload = 1;
*/
public function getPayload()
{
return $this->payload;
}
/**
* * Optional input payload sent along with the request. ** *
.grpc.testing.Payload payload = 1;
*/
public function setPayload(&$var)
{
GPBUtil::checkMessage($var, \Grpc\Testing\Payload::class);
$this->payload = $var;
}
/**
* * Whether the server should expect this request to be compressed. This field * is "nullable" in order to interoperate seamlessly with servers not able to * implement the full compression tests by introspecting the call to verify * the request's compression status. ** *
.grpc.testing.BoolValue expect_compressed = 2;
*/
public function getExpectCompressed()
{
return $this->expect_compressed;
}
/**
* * Whether the server should expect this request to be compressed. This field * is "nullable" in order to interoperate seamlessly with servers not able to * implement the full compression tests by introspecting the call to verify * the request's compression status. ** *
.grpc.testing.BoolValue expect_compressed = 2;
*/
public function setExpectCompressed(&$var)
{
GPBUtil::checkMessage($var, \Grpc\Testing\BoolValue::class);
$this->expect_compressed = $var;
}
}