Home
last modified time | relevance | path

Searched refs:isAlive (Results 1 – 12 of 12) sorted by last modified time

/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/Connections/
H A DConnectionInterface.php57 public function isAlive(): bool; function
H A DConnection.php102 protected $isAlive = false; variable in Elasticsearch\\Connections\\Connection
519 public function isAlive(): bool function in Elasticsearch\\Connections\\Connection
521 return $this->isAlive;
527 $this->isAlive = true;
533 $this->isAlive = false;
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/ConnectionPool/
H A DSniffingConnectionPool.php61 if ($connection->isAlive() === true || $connection->ping() === true) {
92 if ($connection->isAlive() xor $force) {
H A DStaticConnectionPool.php58 if ($connection->isAlive() === true) {
H A DStaticNoPingConnectionPool.php55 if ($connection->isAlive() === true) {
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/src/Elasticsearch/ConnectionPool/Selectors/
H A DStickyRoundRobinSelector.php45 if ($connections[$this->current]->isAlive()) {
/plugin/swiftmail/Swift/Connection/
H A DMulti.php96 if ($this->connections[$id]->isAlive())
129 public function isAlive() function in Swift_Connection_Multi
131 return (($this->active !== null) && $this->connections[$this->active]->isAlive());
H A DSendmail.php194 …if (!$this->isAlive()) throw new Swift_ConnectionException("The sendmail process is not alive and …
206 …if (!$this->isAlive()) throw new Swift_ConnectionException("The sendmail process is not alive and …
304 if (!$this->isAlive())
336 public function isAlive() function in Swift_Connection_Sendmail
H A DNativeMail.php132 public function isAlive() function in Swift_Connection_NativeMail
H A DRotator.php82 if (!$this->connections[$id]->isAlive()) $this->connections[$id]->start();
83 if ($this->connections[$id]->isAlive())
144 if ($this->connections[$id]->isAlive()) $this->connections[$id]->stop();
152 public function isAlive() function in Swift_Connection_Rotator
154 return (($this->active !== null) && $this->connections[$this->active]->isAlive());
H A DSMTP.php440 public function isAlive() function in Swift_Connection_SMTP
/plugin/swiftmail/Swift/
H A DConnection.php46 public function isAlive(); function