• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?php
2# Generated by the protocol buffer compiler.  DO NOT EDIT!
3# source: src/proto/grpc/testing/control.proto
4
5namespace Grpc\Testing;
6
7use Google\Protobuf\Internal\GPBType;
8use Google\Protobuf\Internal\RepeatedField;
9use Google\Protobuf\Internal\GPBUtil;
10
11/**
12 * Request current stats
13 *
14 * Generated from protobuf message <code>grpc.testing.Mark</code>
15 */
16class Mark extends \Google\Protobuf\Internal\Message
17{
18    /**
19     * if true, the stats will be reset after taking their snapshot.
20     *
21     * Generated from protobuf field <code>bool reset = 1;</code>
22     */
23    private $reset = false;
24
25    public function __construct() {
26        \GPBMetadata\Src\Proto\Grpc\Testing\Control::initOnce();
27        parent::__construct();
28    }
29
30    /**
31     * if true, the stats will be reset after taking their snapshot.
32     *
33     * Generated from protobuf field <code>bool reset = 1;</code>
34     * @return bool
35     */
36    public function getReset()
37    {
38        return $this->reset;
39    }
40
41    /**
42     * if true, the stats will be reset after taking their snapshot.
43     *
44     * Generated from protobuf field <code>bool reset = 1;</code>
45     * @param bool $var
46     * @return $this
47     */
48    public function setReset($var)
49    {
50        GPBUtil::checkBool($var);
51        $this->reset = $var;
52
53        return $this;
54    }
55
56}
57
58