code
stringlengths 17
247k
| docstring
stringlengths 30
30.3k
| func_name
stringlengths 1
89
| language
stringclasses 1
value | repo
stringlengths 7
63
| path
stringlengths 7
153
| url
stringlengths 51
209
| license
stringclasses 4
values |
---|---|---|---|---|---|---|---|
public function getStream()
{
@trigger_error('stream is deprecated.', E_USER_DEPRECATED);
return $this->readOneof(7);
} | Generated from protobuf field <code>.livekit.StreamInfoList stream = 7 [deprecated = true];</code>
@return \Livekit\StreamInfoList|null
@deprecated | getStream | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EgressInfo.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EgressInfo.php | Apache-2.0 |
public function setStream($var)
{
@trigger_error('stream is deprecated.', E_USER_DEPRECATED);
GPBUtil::checkMessage($var, \Livekit\StreamInfoList::class);
$this->writeOneof(7, $var);
return $this;
} | Generated from protobuf field <code>.livekit.StreamInfoList stream = 7 [deprecated = true];</code>
@param \Livekit\StreamInfoList $var
@return $this
@deprecated | setStream | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EgressInfo.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EgressInfo.php | Apache-2.0 |
public function getFile()
{
@trigger_error('file is deprecated.', E_USER_DEPRECATED);
return $this->readOneof(8);
} | Generated from protobuf field <code>.livekit.FileInfo file = 8 [deprecated = true];</code>
@return \Livekit\FileInfo|null
@deprecated | getFile | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EgressInfo.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EgressInfo.php | Apache-2.0 |
public function setFile($var)
{
@trigger_error('file is deprecated.', E_USER_DEPRECATED);
GPBUtil::checkMessage($var, \Livekit\FileInfo::class);
$this->writeOneof(8, $var);
return $this;
} | Generated from protobuf field <code>.livekit.FileInfo file = 8 [deprecated = true];</code>
@param \Livekit\FileInfo $var
@return $this
@deprecated | setFile | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EgressInfo.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EgressInfo.php | Apache-2.0 |
public function getSegments()
{
@trigger_error('segments is deprecated.', E_USER_DEPRECATED);
return $this->readOneof(12);
} | Generated from protobuf field <code>.livekit.SegmentsInfo segments = 12 [deprecated = true];</code>
@return \Livekit\SegmentsInfo|null
@deprecated | getSegments | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EgressInfo.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EgressInfo.php | Apache-2.0 |
public function setSegments($var)
{
@trigger_error('segments is deprecated.', E_USER_DEPRECATED);
GPBUtil::checkMessage($var, \Livekit\SegmentsInfo::class);
$this->writeOneof(12, $var);
return $this;
} | Generated from protobuf field <code>.livekit.SegmentsInfo segments = 12 [deprecated = true];</code>
@param \Livekit\SegmentsInfo $var
@return $this
@deprecated | setSegments | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EgressInfo.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EgressInfo.php | Apache-2.0 |
public function getStreamResults()
{
return $this->stream_results;
} | Generated from protobuf field <code>repeated .livekit.StreamInfo stream_results = 15;</code>
@return \Google\Protobuf\Internal\RepeatedField | getStreamResults | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EgressInfo.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EgressInfo.php | Apache-2.0 |
public function setStreamResults($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Livekit\StreamInfo::class);
$this->stream_results = $arr;
return $this;
} | Generated from protobuf field <code>repeated .livekit.StreamInfo stream_results = 15;</code>
@param \Livekit\StreamInfo[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setStreamResults | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EgressInfo.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EgressInfo.php | Apache-2.0 |
public function getFileResults()
{
return $this->file_results;
} | Generated from protobuf field <code>repeated .livekit.FileInfo file_results = 16;</code>
@return \Google\Protobuf\Internal\RepeatedField | getFileResults | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EgressInfo.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EgressInfo.php | Apache-2.0 |
public function setFileResults($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Livekit\FileInfo::class);
$this->file_results = $arr;
return $this;
} | Generated from protobuf field <code>repeated .livekit.FileInfo file_results = 16;</code>
@param \Livekit\FileInfo[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setFileResults | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EgressInfo.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EgressInfo.php | Apache-2.0 |
public function getSegmentResults()
{
return $this->segment_results;
} | Generated from protobuf field <code>repeated .livekit.SegmentsInfo segment_results = 17;</code>
@return \Google\Protobuf\Internal\RepeatedField | getSegmentResults | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EgressInfo.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EgressInfo.php | Apache-2.0 |
public function setSegmentResults($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Livekit\SegmentsInfo::class);
$this->segment_results = $arr;
return $this;
} | Generated from protobuf field <code>repeated .livekit.SegmentsInfo segment_results = 17;</code>
@param \Livekit\SegmentsInfo[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setSegmentResults | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EgressInfo.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EgressInfo.php | Apache-2.0 |
public function getImageResults()
{
return $this->image_results;
} | Generated from protobuf field <code>repeated .livekit.ImagesInfo image_results = 20;</code>
@return \Google\Protobuf\Internal\RepeatedField | getImageResults | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EgressInfo.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EgressInfo.php | Apache-2.0 |
public function setImageResults($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Livekit\ImagesInfo::class);
$this->image_results = $arr;
return $this;
} | Generated from protobuf field <code>repeated .livekit.ImagesInfo image_results = 20;</code>
@param \Livekit\ImagesInfo[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setImageResults | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EgressInfo.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EgressInfo.php | Apache-2.0 |
public function getManifestLocation()
{
return $this->manifest_location;
} | Generated from protobuf field <code>string manifest_location = 23;</code>
@return string | getManifestLocation | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EgressInfo.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EgressInfo.php | Apache-2.0 |
public function setManifestLocation($var)
{
GPBUtil::checkString($var, True);
$this->manifest_location = $var;
return $this;
} | Generated from protobuf field <code>string manifest_location = 23;</code>
@param string $var
@return $this | setManifestLocation | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EgressInfo.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EgressInfo.php | Apache-2.0 |
public function getBackupStorageUsed()
{
return $this->backup_storage_used;
} | next ID: 27
Generated from protobuf field <code>bool backup_storage_used = 25;</code>
@return bool | getBackupStorageUsed | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EgressInfo.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EgressInfo.php | Apache-2.0 |
public function setBackupStorageUsed($var)
{
GPBUtil::checkBool($var);
$this->backup_storage_used = $var;
return $this;
} | next ID: 27
Generated from protobuf field <code>bool backup_storage_used = 25;</code>
@param bool $var
@return $this | setBackupStorageUsed | php | agence104/livekit-server-sdk-php | src/proto/Livekit/EgressInfo.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/EgressInfo.php | Apache-2.0 |
public function getCredentials()
{
return $this->credentials;
} | service account credentials serialized in JSON "credentials.json"
Generated from protobuf field <code>string credentials = 1;</code>
@return string | getCredentials | php | agence104/livekit-server-sdk-php | src/proto/Livekit/GCPUpload.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/GCPUpload.php | Apache-2.0 |
public function setCredentials($var)
{
GPBUtil::checkString($var, True);
$this->credentials = $var;
return $this;
} | service account credentials serialized in JSON "credentials.json"
Generated from protobuf field <code>string credentials = 1;</code>
@param string $var
@return $this | setCredentials | php | agence104/livekit-server-sdk-php | src/proto/Livekit/GCPUpload.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/GCPUpload.php | Apache-2.0 |
public function getProxy()
{
return $this->proxy;
} | Generated from protobuf field <code>.livekit.ProxyConfig proxy = 3;</code>
@return \Livekit\ProxyConfig|null | getProxy | php | agence104/livekit-server-sdk-php | src/proto/Livekit/GCPUpload.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/GCPUpload.php | Apache-2.0 |
public function setProxy($var)
{
GPBUtil::checkMessage($var, \Livekit\ProxyConfig::class);
$this->proxy = $var;
return $this;
} | Generated from protobuf field <code>.livekit.ProxyConfig proxy = 3;</code>
@param \Livekit\ProxyConfig $var
@return $this | setProxy | php | agence104/livekit-server-sdk-php | src/proto/Livekit/GCPUpload.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/GCPUpload.php | Apache-2.0 |
public function getLayout()
{
return $this->layout;
} | Generated from protobuf field <code>string layout = 2;</code>
@return string | getLayout | php | agence104/livekit-server-sdk-php | src/proto/Livekit/UpdateLayoutRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/UpdateLayoutRequest.php | Apache-2.0 |
public function setLayout($var)
{
GPBUtil::checkString($var, True);
$this->layout = $var;
return $this;
} | Generated from protobuf field <code>string layout = 2;</code>
@param string $var
@return $this | setLayout | php | agence104/livekit-server-sdk-php | src/proto/Livekit/UpdateLayoutRequest.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/UpdateLayoutRequest.php | Apache-2.0 |
public function getCodecs()
{
return $this->codecs;
} | disabled for both publish and subscribe
Generated from protobuf field <code>repeated .livekit.Codec codecs = 1;</code>
@return \Google\Protobuf\Internal\RepeatedField | getCodecs | php | agence104/livekit-server-sdk-php | src/proto/Livekit/DisabledCodecs.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/DisabledCodecs.php | Apache-2.0 |
public function setCodecs($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Livekit\Codec::class);
$this->codecs = $arr;
return $this;
} | disabled for both publish and subscribe
Generated from protobuf field <code>repeated .livekit.Codec codecs = 1;</code>
@param \Livekit\Codec[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setCodecs | php | agence104/livekit-server-sdk-php | src/proto/Livekit/DisabledCodecs.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/DisabledCodecs.php | Apache-2.0 |
public function getPublish()
{
return $this->publish;
} | only disable for publish
Generated from protobuf field <code>repeated .livekit.Codec publish = 2;</code>
@return \Google\Protobuf\Internal\RepeatedField | getPublish | php | agence104/livekit-server-sdk-php | src/proto/Livekit/DisabledCodecs.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/DisabledCodecs.php | Apache-2.0 |
public function setPublish($var)
{
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Livekit\Codec::class);
$this->publish = $arr;
return $this;
} | only disable for publish
Generated from protobuf field <code>repeated .livekit.Codec publish = 2;</code>
@param \Livekit\Codec[]|\Google\Protobuf\Internal\RepeatedField $var
@return $this | setPublish | php | agence104/livekit-server-sdk-php | src/proto/Livekit/DisabledCodecs.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/DisabledCodecs.php | Apache-2.0 |
public function getStartTime()
{
return $this->start_time;
} | Generated from protobuf field <code>.google.protobuf.Timestamp start_time = 1;</code>
@return \Google\Protobuf\Timestamp|null | getStartTime | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setStartTime($var)
{
GPBUtil::checkMessage($var, \Google\Protobuf\Timestamp::class);
$this->start_time = $var;
return $this;
} | Generated from protobuf field <code>.google.protobuf.Timestamp start_time = 1;</code>
@param \Google\Protobuf\Timestamp $var
@return $this | setStartTime | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getEndTime()
{
return $this->end_time;
} | Generated from protobuf field <code>.google.protobuf.Timestamp end_time = 2;</code>
@return \Google\Protobuf\Timestamp|null | getEndTime | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setEndTime($var)
{
GPBUtil::checkMessage($var, \Google\Protobuf\Timestamp::class);
$this->end_time = $var;
return $this;
} | Generated from protobuf field <code>.google.protobuf.Timestamp end_time = 2;</code>
@param \Google\Protobuf\Timestamp $var
@return $this | setEndTime | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setDuration($var)
{
GPBUtil::checkDouble($var);
$this->duration = $var;
return $this;
} | Generated from protobuf field <code>double duration = 3;</code>
@param float $var
@return $this | setDuration | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getPacketRate()
{
return $this->packet_rate;
} | Generated from protobuf field <code>double packet_rate = 5;</code>
@return float | getPacketRate | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setPacketRate($var)
{
GPBUtil::checkDouble($var);
$this->packet_rate = $var;
return $this;
} | Generated from protobuf field <code>double packet_rate = 5;</code>
@param float $var
@return $this | setPacketRate | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getBytes()
{
return $this->bytes;
} | Generated from protobuf field <code>uint64 bytes = 6;</code>
@return int|string | getBytes | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setBytes($var)
{
GPBUtil::checkUint64($var);
$this->bytes = $var;
return $this;
} | Generated from protobuf field <code>uint64 bytes = 6;</code>
@param int|string $var
@return $this | setBytes | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getHeaderBytes()
{
return $this->header_bytes;
} | Generated from protobuf field <code>uint64 header_bytes = 39;</code>
@return int|string | getHeaderBytes | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setHeaderBytes($var)
{
GPBUtil::checkUint64($var);
$this->header_bytes = $var;
return $this;
} | Generated from protobuf field <code>uint64 header_bytes = 39;</code>
@param int|string $var
@return $this | setHeaderBytes | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setBitrate($var)
{
GPBUtil::checkDouble($var);
$this->bitrate = $var;
return $this;
} | Generated from protobuf field <code>double bitrate = 7;</code>
@param float $var
@return $this | setBitrate | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getPacketsLost()
{
return $this->packets_lost;
} | Generated from protobuf field <code>uint32 packets_lost = 8;</code>
@return int | getPacketsLost | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setPacketsLost($var)
{
GPBUtil::checkUint32($var);
$this->packets_lost = $var;
return $this;
} | Generated from protobuf field <code>uint32 packets_lost = 8;</code>
@param int $var
@return $this | setPacketsLost | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getPacketLossRate()
{
return $this->packet_loss_rate;
} | Generated from protobuf field <code>double packet_loss_rate = 9;</code>
@return float | getPacketLossRate | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setPacketLossRate($var)
{
GPBUtil::checkDouble($var);
$this->packet_loss_rate = $var;
return $this;
} | Generated from protobuf field <code>double packet_loss_rate = 9;</code>
@param float $var
@return $this | setPacketLossRate | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getPacketLossPercentage()
{
return $this->packet_loss_percentage;
} | Generated from protobuf field <code>float packet_loss_percentage = 10;</code>
@return float | getPacketLossPercentage | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setPacketLossPercentage($var)
{
GPBUtil::checkFloat($var);
$this->packet_loss_percentage = $var;
return $this;
} | Generated from protobuf field <code>float packet_loss_percentage = 10;</code>
@param float $var
@return $this | setPacketLossPercentage | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getPacketsDuplicate()
{
return $this->packets_duplicate;
} | Generated from protobuf field <code>uint32 packets_duplicate = 11;</code>
@return int | getPacketsDuplicate | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setPacketsDuplicate($var)
{
GPBUtil::checkUint32($var);
$this->packets_duplicate = $var;
return $this;
} | Generated from protobuf field <code>uint32 packets_duplicate = 11;</code>
@param int $var
@return $this | setPacketsDuplicate | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getPacketDuplicateRate()
{
return $this->packet_duplicate_rate;
} | Generated from protobuf field <code>double packet_duplicate_rate = 12;</code>
@return float | getPacketDuplicateRate | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setPacketDuplicateRate($var)
{
GPBUtil::checkDouble($var);
$this->packet_duplicate_rate = $var;
return $this;
} | Generated from protobuf field <code>double packet_duplicate_rate = 12;</code>
@param float $var
@return $this | setPacketDuplicateRate | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getBytesDuplicate()
{
return $this->bytes_duplicate;
} | Generated from protobuf field <code>uint64 bytes_duplicate = 13;</code>
@return int|string | getBytesDuplicate | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setBytesDuplicate($var)
{
GPBUtil::checkUint64($var);
$this->bytes_duplicate = $var;
return $this;
} | Generated from protobuf field <code>uint64 bytes_duplicate = 13;</code>
@param int|string $var
@return $this | setBytesDuplicate | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getHeaderBytesDuplicate()
{
return $this->header_bytes_duplicate;
} | Generated from protobuf field <code>uint64 header_bytes_duplicate = 40;</code>
@return int|string | getHeaderBytesDuplicate | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setHeaderBytesDuplicate($var)
{
GPBUtil::checkUint64($var);
$this->header_bytes_duplicate = $var;
return $this;
} | Generated from protobuf field <code>uint64 header_bytes_duplicate = 40;</code>
@param int|string $var
@return $this | setHeaderBytesDuplicate | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getBitrateDuplicate()
{
return $this->bitrate_duplicate;
} | Generated from protobuf field <code>double bitrate_duplicate = 14;</code>
@return float | getBitrateDuplicate | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setBitrateDuplicate($var)
{
GPBUtil::checkDouble($var);
$this->bitrate_duplicate = $var;
return $this;
} | Generated from protobuf field <code>double bitrate_duplicate = 14;</code>
@param float $var
@return $this | setBitrateDuplicate | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getPacketsPadding()
{
return $this->packets_padding;
} | Generated from protobuf field <code>uint32 packets_padding = 15;</code>
@return int | getPacketsPadding | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setPacketsPadding($var)
{
GPBUtil::checkUint32($var);
$this->packets_padding = $var;
return $this;
} | Generated from protobuf field <code>uint32 packets_padding = 15;</code>
@param int $var
@return $this | setPacketsPadding | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getPacketPaddingRate()
{
return $this->packet_padding_rate;
} | Generated from protobuf field <code>double packet_padding_rate = 16;</code>
@return float | getPacketPaddingRate | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setPacketPaddingRate($var)
{
GPBUtil::checkDouble($var);
$this->packet_padding_rate = $var;
return $this;
} | Generated from protobuf field <code>double packet_padding_rate = 16;</code>
@param float $var
@return $this | setPacketPaddingRate | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getBytesPadding()
{
return $this->bytes_padding;
} | Generated from protobuf field <code>uint64 bytes_padding = 17;</code>
@return int|string | getBytesPadding | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setBytesPadding($var)
{
GPBUtil::checkUint64($var);
$this->bytes_padding = $var;
return $this;
} | Generated from protobuf field <code>uint64 bytes_padding = 17;</code>
@param int|string $var
@return $this | setBytesPadding | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getHeaderBytesPadding()
{
return $this->header_bytes_padding;
} | Generated from protobuf field <code>uint64 header_bytes_padding = 41;</code>
@return int|string | getHeaderBytesPadding | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setHeaderBytesPadding($var)
{
GPBUtil::checkUint64($var);
$this->header_bytes_padding = $var;
return $this;
} | Generated from protobuf field <code>uint64 header_bytes_padding = 41;</code>
@param int|string $var
@return $this | setHeaderBytesPadding | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getBitratePadding()
{
return $this->bitrate_padding;
} | Generated from protobuf field <code>double bitrate_padding = 18;</code>
@return float | getBitratePadding | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setBitratePadding($var)
{
GPBUtil::checkDouble($var);
$this->bitrate_padding = $var;
return $this;
} | Generated from protobuf field <code>double bitrate_padding = 18;</code>
@param float $var
@return $this | setBitratePadding | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getPacketsOutOfOrder()
{
return $this->packets_out_of_order;
} | Generated from protobuf field <code>uint32 packets_out_of_order = 19;</code>
@return int | getPacketsOutOfOrder | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setPacketsOutOfOrder($var)
{
GPBUtil::checkUint32($var);
$this->packets_out_of_order = $var;
return $this;
} | Generated from protobuf field <code>uint32 packets_out_of_order = 19;</code>
@param int $var
@return $this | setPacketsOutOfOrder | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getFrames()
{
return $this->frames;
} | Generated from protobuf field <code>uint32 frames = 20;</code>
@return int | getFrames | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setFrames($var)
{
GPBUtil::checkUint32($var);
$this->frames = $var;
return $this;
} | Generated from protobuf field <code>uint32 frames = 20;</code>
@param int $var
@return $this | setFrames | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getFrameRate()
{
return $this->frame_rate;
} | Generated from protobuf field <code>double frame_rate = 21;</code>
@return float | getFrameRate | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setFrameRate($var)
{
GPBUtil::checkDouble($var);
$this->frame_rate = $var;
return $this;
} | Generated from protobuf field <code>double frame_rate = 21;</code>
@param float $var
@return $this | setFrameRate | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getJitterCurrent()
{
return $this->jitter_current;
} | Generated from protobuf field <code>double jitter_current = 22;</code>
@return float | getJitterCurrent | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setJitterCurrent($var)
{
GPBUtil::checkDouble($var);
$this->jitter_current = $var;
return $this;
} | Generated from protobuf field <code>double jitter_current = 22;</code>
@param float $var
@return $this | setJitterCurrent | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getJitterMax()
{
return $this->jitter_max;
} | Generated from protobuf field <code>double jitter_max = 23;</code>
@return float | getJitterMax | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setJitterMax($var)
{
GPBUtil::checkDouble($var);
$this->jitter_max = $var;
return $this;
} | Generated from protobuf field <code>double jitter_max = 23;</code>
@param float $var
@return $this | setJitterMax | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getGapHistogram()
{
return $this->gap_histogram;
} | Generated from protobuf field <code>map<int32, uint32> gap_histogram = 24;</code>
@return \Google\Protobuf\Internal\MapField | getGapHistogram | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setGapHistogram($var)
{
$arr = GPBUtil::checkMapField($var, \Google\Protobuf\Internal\GPBType::INT32, \Google\Protobuf\Internal\GPBType::UINT32);
$this->gap_histogram = $arr;
return $this;
} | Generated from protobuf field <code>map<int32, uint32> gap_histogram = 24;</code>
@param array|\Google\Protobuf\Internal\MapField $var
@return $this | setGapHistogram | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getNacks()
{
return $this->nacks;
} | Generated from protobuf field <code>uint32 nacks = 25;</code>
@return int | getNacks | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setNacks($var)
{
GPBUtil::checkUint32($var);
$this->nacks = $var;
return $this;
} | Generated from protobuf field <code>uint32 nacks = 25;</code>
@param int $var
@return $this | setNacks | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getNackAcks()
{
return $this->nack_acks;
} | Generated from protobuf field <code>uint32 nack_acks = 37;</code>
@return int | getNackAcks | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setNackAcks($var)
{
GPBUtil::checkUint32($var);
$this->nack_acks = $var;
return $this;
} | Generated from protobuf field <code>uint32 nack_acks = 37;</code>
@param int $var
@return $this | setNackAcks | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getNackMisses()
{
return $this->nack_misses;
} | Generated from protobuf field <code>uint32 nack_misses = 26;</code>
@return int | getNackMisses | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setNackMisses($var)
{
GPBUtil::checkUint32($var);
$this->nack_misses = $var;
return $this;
} | Generated from protobuf field <code>uint32 nack_misses = 26;</code>
@param int $var
@return $this | setNackMisses | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getNackRepeated()
{
return $this->nack_repeated;
} | Generated from protobuf field <code>uint32 nack_repeated = 38;</code>
@return int | getNackRepeated | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setNackRepeated($var)
{
GPBUtil::checkUint32($var);
$this->nack_repeated = $var;
return $this;
} | Generated from protobuf field <code>uint32 nack_repeated = 38;</code>
@param int $var
@return $this | setNackRepeated | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getPlis()
{
return $this->plis;
} | Generated from protobuf field <code>uint32 plis = 27;</code>
@return int | getPlis | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setPlis($var)
{
GPBUtil::checkUint32($var);
$this->plis = $var;
return $this;
} | Generated from protobuf field <code>uint32 plis = 27;</code>
@param int $var
@return $this | setPlis | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getLastPli()
{
return $this->last_pli;
} | Generated from protobuf field <code>.google.protobuf.Timestamp last_pli = 28;</code>
@return \Google\Protobuf\Timestamp|null | getLastPli | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setLastPli($var)
{
GPBUtil::checkMessage($var, \Google\Protobuf\Timestamp::class);
$this->last_pli = $var;
return $this;
} | Generated from protobuf field <code>.google.protobuf.Timestamp last_pli = 28;</code>
@param \Google\Protobuf\Timestamp $var
@return $this | setLastPli | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getFirs()
{
return $this->firs;
} | Generated from protobuf field <code>uint32 firs = 29;</code>
@return int | getFirs | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setFirs($var)
{
GPBUtil::checkUint32($var);
$this->firs = $var;
return $this;
} | Generated from protobuf field <code>uint32 firs = 29;</code>
@param int $var
@return $this | setFirs | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getLastFir()
{
return $this->last_fir;
} | Generated from protobuf field <code>.google.protobuf.Timestamp last_fir = 30;</code>
@return \Google\Protobuf\Timestamp|null | getLastFir | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setLastFir($var)
{
GPBUtil::checkMessage($var, \Google\Protobuf\Timestamp::class);
$this->last_fir = $var;
return $this;
} | Generated from protobuf field <code>.google.protobuf.Timestamp last_fir = 30;</code>
@param \Google\Protobuf\Timestamp $var
@return $this | setLastFir | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getRttCurrent()
{
return $this->rtt_current;
} | Generated from protobuf field <code>uint32 rtt_current = 31;</code>
@return int | getRttCurrent | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setRttCurrent($var)
{
GPBUtil::checkUint32($var);
$this->rtt_current = $var;
return $this;
} | Generated from protobuf field <code>uint32 rtt_current = 31;</code>
@param int $var
@return $this | setRttCurrent | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getRttMax()
{
return $this->rtt_max;
} | Generated from protobuf field <code>uint32 rtt_max = 32;</code>
@return int | getRttMax | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setRttMax($var)
{
GPBUtil::checkUint32($var);
$this->rtt_max = $var;
return $this;
} | Generated from protobuf field <code>uint32 rtt_max = 32;</code>
@param int $var
@return $this | setRttMax | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function getKeyFrames()
{
return $this->key_frames;
} | Generated from protobuf field <code>uint32 key_frames = 33;</code>
@return int | getKeyFrames | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
public function setKeyFrames($var)
{
GPBUtil::checkUint32($var);
$this->key_frames = $var;
return $this;
} | Generated from protobuf field <code>uint32 key_frames = 33;</code>
@param int $var
@return $this | setKeyFrames | php | agence104/livekit-server-sdk-php | src/proto/Livekit/RTPStats.php | https://github.com/agence104/livekit-server-sdk-php/blob/master/src/proto/Livekit/RTPStats.php | Apache-2.0 |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.