You are here

class KalturaSystemService in Kaltura 6.2

Hierarchy

Expanded class hierarchy of KalturaSystemService

File

kaltura_client/KalturaClient.php, line 4680

View source
class KalturaSystemService extends KalturaServiceBase {
  function __construct(KalturaClient $client) {
    parent::__construct($client);
  }
  function ping() {
    $kparams = array();
    $this->client
      ->queueServiceActionCall("system", "ping", $kparams);
    if ($this->client
      ->isMultiRequest()) {
      return null;
    }
    $resultObject = $this->client
      ->doQueue();
    $this->client
      ->throwExceptionIfError($resultObject);
    $this->client
      ->validateObjectType($resultObject, "boolean");
    return $resultObject;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
KalturaServiceBase::$client protected property *
KalturaSystemService::ping function
KalturaSystemService::__construct function * Initialize the service keeping reference to the KalturaClient * * Overrides KalturaServiceBase::__construct