123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- namespace Easemob\Agora;
- /**
- * @ignore
- */
- class Service
- {
- public $type;
- public $privileges;
- public function __construct($serviceType)
- {
- $this->type = $serviceType;
- }
- public function addPrivilege($privilege, $expire)
- {
- $this->privileges[$privilege] = $expire;
- }
- public function getServiceType()
- {
- return $this->type;
- }
- public function pack()
- {
- return Util::packUint16($this->type) . Util::packMapUint32($this->privileges);
- }
- public function unpack(&$data)
- {
- $this->privileges = Util::unpackMapUint32($data);
- }
- }
|