Moodle  2.2.1
http://www.collinsharper.com
C:/xampp/htdocs/moodle/lib/zend/Zend/Service/WindowsAzure/RetryPolicy/NoRetry.php
Go to the documentation of this file.
00001 <?php
00026 require_once 'Zend/Service/WindowsAzure/RetryPolicy/RetryPolicyAbstract.php';
00027 
00035 class Zend_Service_WindowsAzure_RetryPolicy_NoRetry extends Zend_Service_WindowsAzure_RetryPolicy_RetryPolicyAbstract
00036 {
00044     public function execute($function, $parameters = array())
00045     {
00046         $returnValue = null;
00047         
00048         try
00049         {
00050             $returnValue = call_user_func_array($function, $parameters);
00051             return $returnValue;
00052         }
00053         catch (Exception $ex)
00054         {
00055             throw $ex;
00056         }
00057     }
00058 }
 All Data Structures Namespaces Files Functions Variables Enumerations