PluginProbe ʕ •ᴥ•ʔ
Transferito: WP Migration / trunk
Transferito: WP Migration vtrunk
trunk 11.4.0 12.0.0 13.1.0 14.0.0 14.0.11 14.0.7 14.1.0 14.1.1 14.1.2 14.1.3 14.1.4
transferito / vendor / aws / aws-sdk-php / src / Retry / ConfigurationInterface.php
transferito / vendor / aws / aws-sdk-php / src / Retry Last commit date
Exception 11 months ago Configuration.php 11 months ago ConfigurationInterface.php 11 months ago ConfigurationProvider.php 11 months ago QuotaManager.php 11 months ago RateLimiter.php 11 months ago RetryHelperTrait.php 11 months ago
ConfigurationInterface.php
31 lines
1 <?php
2 namespace Aws\Retry;
3
4 /**
5 * Provides access to retry configuration
6 */
7 interface ConfigurationInterface
8 {
9 /**
10 * Returns the retry mode. Available modes include 'legacy', 'standard', and
11 * 'adapative'.
12 *
13 * @return string
14 */
15 public function getMode();
16
17 /**
18 * Returns the maximum number of attempts that will be used for a request
19 *
20 * @return string
21 */
22 public function getMaxAttempts();
23
24 /**
25 * Returns the configuration as an associative array
26 *
27 * @return array
28 */
29 public function toArray();
30 }
31