• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?php
2# Generated by the protocol buffer compiler.  DO NOT EDIT!
3# source: src/proto/grpc/testing/messages.proto
4
5namespace Grpc\Testing;
6
7use Google\Protobuf\Internal\GPBType;
8use Google\Protobuf\Internal\RepeatedField;
9use Google\Protobuf\Internal\GPBUtil;
10
11/**
12 * Server-streaming response, as configured by the request and parameters.
13 *
14 * Generated from protobuf message <code>grpc.testing.StreamingOutputCallResponse</code>
15 */
16class StreamingOutputCallResponse extends \Google\Protobuf\Internal\Message
17{
18    /**
19     * Payload to increase response size.
20     *
21     * Generated from protobuf field <code>.grpc.testing.Payload payload = 1;</code>
22     */
23    protected $payload = null;
24
25    /**
26     * Constructor.
27     *
28     * @param array $data {
29     *     Optional. Data for populating the Message object.
30     *
31     *     @type \Grpc\Testing\Payload $payload
32     *           Payload to increase response size.
33     * }
34     */
35    public function __construct($data = NULL) {
36        \GPBMetadata\Src\Proto\Grpc\Testing\Messages::initOnce();
37        parent::__construct($data);
38    }
39
40    /**
41     * Payload to increase response size.
42     *
43     * Generated from protobuf field <code>.grpc.testing.Payload payload = 1;</code>
44     * @return \Grpc\Testing\Payload
45     */
46    public function getPayload()
47    {
48        return $this->payload;
49    }
50
51    /**
52     * Payload to increase response size.
53     *
54     * Generated from protobuf field <code>.grpc.testing.Payload payload = 1;</code>
55     * @param \Grpc\Testing\Payload $var
56     * @return $this
57     */
58    public function setPayload($var)
59    {
60        GPBUtil::checkMessage($var, \Grpc\Testing\Payload::class);
61        $this->payload = $var;
62
63        return $this;
64    }
65
66}
67
68