Created
April 11, 2017 13:18
-
-
Save amochohan/e4ced253fa8bd6ca73c9ce6e020852ba to your computer and use it in GitHub Desktop.
Retrying a task
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
try($attempts = 1, $wait = 0) { | |
// Try $attempts times to do something, waiting $wait milliseconds between trys | |
// Within the try block scope, we have access to the $attempts and $wait arguments | |
$this->log('Doing something important attempt: ' . $attempt); | |
} | |
catch (Exception $e) { | |
// Do something | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment