/** * Store a flag indicating if the application was updated in database * table APP_SOLR_QUEUE * * @param string $AppUid * applicatiom identifier * @param integer $updated * 0:false, not updated, 1: updated, 2:deleted */ public function applicationChangedUpdateSolrQueue($AppUid, $updated) { $oAppSolrQueue = new AppSolrQueue(); $oAppSolrQueue->createUpdate($AppUid, $updated); }
/** * Store a flag indicating if the application was updated in database * table APP_SOLR_QUEUE * * @param string $AppUid * applicatiom identifier * @param integer $updated * 0:false, not updated, 1: updated, 2:deleted */ public function applicationChangedUpdateSolrQueue($AppUid, $updated) { $traceData = $this->getCurrentTraceInfo(); //var_dump($traceData); $oAppSolrQueue = new AppSolrQueue(); $oAppSolrQueue->createUpdate($AppUid, $traceData, $updated); }