Esempio n. 1
0
 /**
  * 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);
 }
Esempio n. 2
0
 /**
  * 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);
 }