diff options
author | Sree Kuchibhotla <sreek@google.com> | 2017-03-21 10:28:40 -0700 |
---|---|---|
committer | Sree Kuchibhotla <sreek@google.com> | 2017-03-21 10:28:40 -0700 |
commit | 36c370793ba250fc423dcd0947fc8a07759c4d08 (patch) | |
tree | a82d809fb9ae41011e5f47c11df208d7d1db5736 /src/php/tests/qps/generated_code/Grpc/Testing/ProxyStat.php | |
parent | 89da88c7b44cb0f1765f6216faf2d5ec3d16f403 (diff) | |
parent | e50c7bdcc83638544eed01f20c19b89648d78fe9 (diff) |
Merge branch 'master' into cq_create_api_changes
Diffstat (limited to 'src/php/tests/qps/generated_code/Grpc/Testing/ProxyStat.php')
-rw-r--r-- | src/php/tests/qps/generated_code/Grpc/Testing/ProxyStat.php | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/php/tests/qps/generated_code/Grpc/Testing/ProxyStat.php b/src/php/tests/qps/generated_code/Grpc/Testing/ProxyStat.php new file mode 100644 index 0000000000..ed43be99ce --- /dev/null +++ b/src/php/tests/qps/generated_code/Grpc/Testing/ProxyStat.php @@ -0,0 +1,44 @@ +<?php +# Generated by the protocol buffer compiler. DO NOT EDIT! +# source: src/proto/grpc/testing/proxy-service.proto + +namespace Grpc\Testing; + +use Google\Protobuf\Internal\GPBType; +use Google\Protobuf\Internal\RepeatedField; +use Google\Protobuf\Internal\GPBUtil; + +/** + * Protobuf type <code>grpc.testing.ProxyStat</code> + */ +class ProxyStat extends \Google\Protobuf\Internal\Message +{ + /** + * <code>double latency = 1;</code> + */ + private $latency = 0.0; + + public function __construct() { + \GPBMetadata\Src\Proto\Grpc\Testing\ProxyService::initOnce(); + parent::__construct(); + } + + /** + * <code>double latency = 1;</code> + */ + public function getLatency() + { + return $this->latency; + } + + /** + * <code>double latency = 1;</code> + */ + public function setLatency($var) + { + GPBUtil::checkDouble($var); + $this->latency = $var; + } + +} + |