-
Notifications
You must be signed in to change notification settings - Fork 461
Expand file tree
/
Copy pathStreamStats.php
More file actions
77 lines (66 loc) · 2.16 KB
/
StreamStats.php
File metadata and controls
77 lines (66 loc) · 2.16 KB
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
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: google/cloud/bigquery/storage/v1/storage.proto
namespace Google\Cloud\BigQuery\Storage\V1;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\GPBUtil;
use Google\Protobuf\RepeatedField;
/**
* Estimated stream statistics for a given read Stream.
*
* Generated from protobuf message <code>google.cloud.bigquery.storage.v1.StreamStats</code>
*/
class StreamStats extends \Google\Protobuf\Internal\Message
{
/**
* Represents the progress of the current stream.
*
* Generated from protobuf field <code>.google.cloud.bigquery.storage.v1.StreamStats.Progress progress = 2;</code>
*/
protected $progress = null;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Google\Cloud\BigQuery\Storage\V1\StreamStats\Progress $progress
* Represents the progress of the current stream.
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Google\Cloud\Bigquery\Storage\V1\Storage::initOnce();
parent::__construct($data);
}
/**
* Represents the progress of the current stream.
*
* Generated from protobuf field <code>.google.cloud.bigquery.storage.v1.StreamStats.Progress progress = 2;</code>
* @return \Google\Cloud\BigQuery\Storage\V1\StreamStats\Progress|null
*/
public function getProgress()
{
return $this->progress;
}
public function hasProgress()
{
return isset($this->progress);
}
public function clearProgress()
{
unset($this->progress);
}
/**
* Represents the progress of the current stream.
*
* Generated from protobuf field <code>.google.cloud.bigquery.storage.v1.StreamStats.Progress progress = 2;</code>
* @param \Google\Cloud\BigQuery\Storage\V1\StreamStats\Progress $var
* @return $this
*/
public function setProgress($var)
{
GPBUtil::checkMessage($var, \Google\Cloud\BigQuery\Storage\V1\StreamStats\Progress::class);
$this->progress = $var;
return $this;
}
}