aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/php/tests/qps/generated_code/Grpc/Testing/Scenario.php
blob: 9ec284b71f23196e9daf392f03200745852b2d19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: src/proto/grpc/testing/control.proto

namespace Grpc\Testing;

use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;

/**
 * A single performance scenario: input to qps_json_driver
 *
 * Generated from protobuf message <code>grpc.testing.Scenario</code>
 */
class Scenario extends \Google\Protobuf\Internal\Message
{
    /**
     * Human readable name for this scenario
     *
     * Generated from protobuf field <code>string name = 1;</code>
     */
    private $name = '';
    /**
     * Client configuration
     *
     * Generated from protobuf field <code>.grpc.testing.ClientConfig client_config = 2;</code>
     */
    private $client_config = null;
    /**
     * Number of clients to start for the test
     *
     * Generated from protobuf field <code>int32 num_clients = 3;</code>
     */
    private $num_clients = 0;
    /**
     * Server configuration
     *
     * Generated from protobuf field <code>.grpc.testing.ServerConfig server_config = 4;</code>
     */
    private $server_config = null;
    /**
     * Number of servers to start for the test
     *
     * Generated from protobuf field <code>int32 num_servers = 5;</code>
     */
    private $num_servers = 0;
    /**
     * Warmup period, in seconds
     *
     * Generated from protobuf field <code>int32 warmup_seconds = 6;</code>
     */
    private $warmup_seconds = 0;
    /**
     * Benchmark time, in seconds
     *
     * Generated from protobuf field <code>int32 benchmark_seconds = 7;</code>
     */
    private $benchmark_seconds = 0;
    /**
     * Number of workers to spawn locally (usually zero)
     *
     * Generated from protobuf field <code>int32 spawn_local_worker_count = 8;</code>
     */
    private $spawn_local_worker_count = 0;

    public function __construct() {
        \GPBMetadata\Src\Proto\Grpc\Testing\Control::initOnce();
        parent::__construct();
    }

    /**
     * Human readable name for this scenario
     *
     * Generated from protobuf field <code>string name = 1;</code>
     * @return string
     */
    public function getName()
    {
        return $this->name;
    }

    /**
     * Human readable name for this scenario
     *
     * Generated from protobuf field <code>string name = 1;</code>
     * @param string $var
     * @return $this
     */
    public function setName($var)
    {
        GPBUtil::checkString($var, True);
        $this->name = $var;

        return $this;
    }

    /**
     * Client configuration
     *
     * Generated from protobuf field <code>.grpc.testing.ClientConfig client_config = 2;</code>
     * @return \Grpc\Testing\ClientConfig
     */
    public function getClientConfig()
    {
        return $this->client_config;
    }

    /**
     * Client configuration
     *
     * Generated from protobuf field <code>.grpc.testing.ClientConfig client_config = 2;</code>
     * @param \Grpc\Testing\ClientConfig $var
     * @return $this
     */
    public function setClientConfig($var)
    {
        GPBUtil::checkMessage($var, \Grpc\Testing\ClientConfig::class);
        $this->client_config = $var;

        return $this;
    }

    /**
     * Number of clients to start for the test
     *
     * Generated from protobuf field <code>int32 num_clients = 3;</code>
     * @return int
     */
    public function getNumClients()
    {
        return $this->num_clients;
    }

    /**
     * Number of clients to start for the test
     *
     * Generated from protobuf field <code>int32 num_clients = 3;</code>
     * @param int $var
     * @return $this
     */
    public function setNumClients($var)
    {
        GPBUtil::checkInt32($var);
        $this->num_clients = $var;

        return $this;
    }

    /**
     * Server configuration
     *
     * Generated from protobuf field <code>.grpc.testing.ServerConfig server_config = 4;</code>
     * @return \Grpc\Testing\ServerConfig
     */
    public function getServerConfig()
    {
        return $this->server_config;
    }

    /**
     * Server configuration
     *
     * Generated from protobuf field <code>.grpc.testing.ServerConfig server_config = 4;</code>
     * @param \Grpc\Testing\ServerConfig $var
     * @return $this
     */
    public function setServerConfig($var)
    {
        GPBUtil::checkMessage($var, \Grpc\Testing\ServerConfig::class);
        $this->server_config = $var;

        return $this;
    }

    /**
     * Number of servers to start for the test
     *
     * Generated from protobuf field <code>int32 num_servers = 5;</code>
     * @return int
     */
    public function getNumServers()
    {
        return $this->num_servers;
    }

    /**
     * Number of servers to start for the test
     *
     * Generated from protobuf field <code>int32 num_servers = 5;</code>
     * @param int $var
     * @return $this
     */
    public function setNumServers($var)
    {
        GPBUtil::checkInt32($var);
        $this->num_servers = $var;

        return $this;
    }

    /**
     * Warmup period, in seconds
     *
     * Generated from protobuf field <code>int32 warmup_seconds = 6;</code>
     * @return int
     */
    public function getWarmupSeconds()
    {
        return $this->warmup_seconds;
    }

    /**
     * Warmup period, in seconds
     *
     * Generated from protobuf field <code>int32 warmup_seconds = 6;</code>
     * @param int $var
     * @return $this
     */
    public function setWarmupSeconds($var)
    {
        GPBUtil::checkInt32($var);
        $this->warmup_seconds = $var;

        return $this;
    }

    /**
     * Benchmark time, in seconds
     *
     * Generated from protobuf field <code>int32 benchmark_seconds = 7;</code>
     * @return int
     */
    public function getBenchmarkSeconds()
    {
        return $this->benchmark_seconds;
    }

    /**
     * Benchmark time, in seconds
     *
     * Generated from protobuf field <code>int32 benchmark_seconds = 7;</code>
     * @param int $var
     * @return $this
     */
    public function setBenchmarkSeconds($var)
    {
        GPBUtil::checkInt32($var);
        $this->benchmark_seconds = $var;

        return $this;
    }

    /**
     * Number of workers to spawn locally (usually zero)
     *
     * Generated from protobuf field <code>int32 spawn_local_worker_count = 8;</code>
     * @return int
     */
    public function getSpawnLocalWorkerCount()
    {
        return $this->spawn_local_worker_count;
    }

    /**
     * Number of workers to spawn locally (usually zero)
     *
     * Generated from protobuf field <code>int32 spawn_local_worker_count = 8;</code>
     * @param int $var
     * @return $this
     */
    public function setSpawnLocalWorkerCount($var)
    {
        GPBUtil::checkInt32($var);
        $this->spawn_local_worker_count = $var;

        return $this;
    }

}