OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
Xpress
/
vendor
/
aws
/
aws-sdk-php
/
src
/
Retry
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/19/2025 10:07:17 AM
rwxr-xr-x
📄
Configuration.php
1.42 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
ConfigurationInterface.php
617 bytes
05/19/2025 10:07:16 AM
rw-r--r--
📄
ConfigurationProvider.php
7.97 KB
05/19/2025 10:07:16 AM
rw-r--r--
📁
Exception
-
05/19/2025 10:07:16 AM
rwxr-xr-x
📄
QuotaManager.php
2.59 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
RateLimiter.php
5.2 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
RetryHelperTrait.php
1.57 KB
05/19/2025 10:07:16 AM
rw-r--r--
Editing: ConfigurationInterface.php
Close
<?php namespace Aws\Retry; /** * Provides access to retry configuration */ interface ConfigurationInterface { /** * Returns the retry mode. Available modes include 'legacy', 'standard', and * 'adapative'. * * @return string */ public function getMode(); /** * Returns the maximum number of attempts that will be used for a request * * @return string */ public function getMaxAttempts(); /** * Returns the configuration as an associative array * * @return array */ public function toArray(); }