コード例 #1
0
 /**
  * Persists any deferred cache items.
  *
  * @return bool
  *   True if all not-yet-saved items were successfully saved or there were none. False otherwise.
  */
 public function commit()
 {
     return $this->local->commit() && $this->remote->commit();
 }
コード例 #2
0
ファイル: WrapperPool.php プロジェクト: jivoo/jivoo
 /**
  * {@inheritdoc}
  */
 public function commit()
 {
     return $this->pool->commit();
 }
コード例 #3
0
 public function commit()
 {
     return $this->decorated->commit();
 }
コード例 #4
0
 /**
  * {@inheritdoc}
  */
 public function commit()
 {
     return $this->cache->commit();
 }
コード例 #5
0
ファイル: DefaultCacheAdapter.php プロジェクト: shieldo/Cache
 /**
  * {@inheritdoc}
  */
 public function commit()
 {
     return $this->defaultAdapter->commit();
 }