You are here

function KalturaSystemService::ping in Kaltura 6.2

File

kaltura_client/KalturaClient.php, line 4687

Class

KalturaSystemService

Code

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;
}