/**
  * 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();
 }
Esempio n. 2
0
 /**
  * {@inheritdoc}
  */
 public function commit()
 {
     return $this->pool->commit();
 }
 public function commit()
 {
     return $this->decorated->commit();
 }
 /**
  * {@inheritdoc}
  */
 public function commit()
 {
     return $this->cache->commit();
 }
Esempio n. 5
0
 /**
  * {@inheritdoc}
  */
 public function commit()
 {
     return $this->defaultAdapter->commit();
 }