CakePHP
  • Documentation
    • Book
    • API
    • Videos
    • Logos & Trademarks
  • Business Solutions
  • Swag
  • Road Trip
  • Team
  • Community
    • Community
    • Team
    • Issues (Github)
    • YouTube Channel
    • Get Involved
    • Bakery
    • Featured Resources
    • Newsletter
    • Certification
    • My CakePHP
    • CakeFest
    • Facebook
    • Twitter
    • Help & Support
    • Forum
    • Stack Overflow
    • IRC
    • Slack
    • Paid Support
CakePHP

C CakePHP 4.0 Strawberry API

  • Overview
  • Version:
    • 4.0
      • 4.0
      • 3.9
      • 3.8
      • 3.7
      • 3.6
      • 3.5
      • 3.4
      • 3.3
      • 3.2
      • 3.1
      • 3.0
      • 2.10
      • 2.9
      • 2.8
      • 2.7
      • 2.6
      • 2.5
      • 2.4
      • 2.3
      • 2.2
      • 2.1
      • 2.0
      • 1.3
      • 1.2

Namespaces

  • Cake
    • Auth
    • Cache
    • Collection
    • Command
    • Console
    • Controller
    • Core
    • Database
      • Dialect
      • Driver
      • Exception
      • Expression
      • Log
      • Retry
      • Schema
      • Statement
      • Type
    • Datasource
    • Error
    • Event
    • Filesystem
    • Form
    • Http
    • I18n
    • Log
    • Mailer
    • Network
    • ORM
    • Routing
    • Shell
    • TestSuite
    • Utility
    • Validation
    • View

Class ReconnectStrategy

Makes sure the connection to the database is alive before authorizing the retry of an action.

Namespace: Cake\Database\Retry

Properties summary

  • $causes protected static
    array

    The list of error strings to match when looking for a disconnection error.

  • $connection protected
    \Cake\Database\Connection

    The connection to check for validity

Method Summary

  • __construct() public

    Creates the ReconnectStrategy object by storing a reference to the passed connection. This reference will be used to automatically reconnect to the server in case of failure.

  • reconnect() protected

    Tries to re-establish the connection to the server, if it is safe to do so

  • shouldRetry() public

    Checks whether or not the exception was caused by a lost connection, and returns true if it was able to successfully reconnect.

Method Detail

__construct() public

¶

__construct(\Cake\Database\Connection $connection)

Creates the ReconnectStrategy object by storing a reference to the passed connection. This reference will be used to automatically reconnect to the server in case of failure.

Parameters
\Cake\Database\Connection $connection

The connection to check

reconnect() protected

¶

reconnect()

Tries to re-establish the connection to the server, if it is safe to do so

Returns
bool

Whether or not the connection was re-established

shouldRetry() public

¶

shouldRetry(\Exception $exception, int $retryCount)

Checks whether or not the exception was caused by a lost connection, and returns true if it was able to successfully reconnect.

Parameters
\Exception $exception

The exception to check for its message

int $retryCount

The number of times the action has been already called

Returns
bool

Whether or not it is OK to retry the action

Property Detail

$causes ¶ protected static

The list of error strings to match when looking for a disconnection error.

This is a static variable to enable opcache to inline the values.

Type
array

$connection ¶ protected

The connection to check for validity

Type
\Cake\Database\Connection