-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathActiveConnection.php
87 lines (75 loc) · 1.47 KB
/
ActiveConnection.php
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
<?php
class ActiveConnection
{
/**
* @var float $CurrentBitrate
*/
protected $CurrentBitrate = null;
/**
* @var float $CurrentFps
*/
protected $CurrentFps = null;
/**
* @var string $any
*/
protected $any = null;
/**
* @param float $CurrentBitrate
* @param float $CurrentFps
* @param string $any
*/
public function __construct($CurrentBitrate, $CurrentFps, $any)
{
$this->CurrentBitrate = $CurrentBitrate;
$this->CurrentFps = $CurrentFps;
$this->any = $any;
}
/**
* @return float
*/
public function getCurrentBitrate()
{
return $this->CurrentBitrate;
}
/**
* @param float $CurrentBitrate
* @return ActiveConnection
*/
public function setCurrentBitrate($CurrentBitrate)
{
$this->CurrentBitrate = $CurrentBitrate;
return $this;
}
/**
* @return float
*/
public function getCurrentFps()
{
return $this->CurrentFps;
}
/**
* @param float $CurrentFps
* @return ActiveConnection
*/
public function setCurrentFps($CurrentFps)
{
$this->CurrentFps = $CurrentFps;
return $this;
}
/**
* @return string
*/
public function getAny()
{
return $this->any;
}
/**
* @param string $any
* @return ActiveConnection
*/
public function setAny($any)
{
$this->any = $any;
return $this;
}
}