function update($entryId, KalturaMixEntry $mixEntry)
 {
     $kparams = array();
     $this->client->addParam($kparams, "entryId", $entryId);
     $this->client->addParam($kparams, "mixEntry", $mixEntry->toParams());
     $this->client->queueServiceActionCall("mixing", "update", $kparams);
     if ($this->client->isMultiRequest()) {
         return null;
     }
     $resultObject = $this->client->doQueue();
     $this->client->throwExceptionIfError($resultObject);
     $this->client->validateObjectType($resultObject, "KalturaMixEntry");
     return $resultObject;
 }
示例#2
0
 function update($entryId, KalturaMixEntry $mixEntry)
 {
     $kparams = array();
     $this->client->addParam($kparams, "entryId", $entryId);
     $this->client->addParam($kparams, "mixEntry", $mixEntry->toParams());
     $resultObject = $this->client->callService("mixing", "update", $kparams);
     $this->client->throwExceptionIfError($resultObject);
     $this->client->validateObjectType($resultObject, "KalturaMixEntry");
     return $resultObject;
 }