Improve background workers

This commit is contained in:
Frederic Guillot
2016-06-05 14:19:07 -04:00
parent f48e545631
commit a08339059b
8 changed files with 194 additions and 9 deletions

43
app/Job/HttpAsyncJob.php Normal file
View File

@@ -0,0 +1,43 @@
<?php
namespace Kanboard\Job;
/**
* Async HTTP Client (fire and forget)
*
* @package Kanboard\Job
* @author Frederic Guillot
*/
class HttpAsyncJob extends BaseJob
{
/**
* Set job parameters
*
* @access public
* @param string $method
* @param string $url
* @param string $content
* @param array $headers
* @return $this
*/
public function withParams($method, $url, $content, array $headers)
{
$this->jobParams = array($method, $url, $content, $headers);
return $this;
}
/**
* Set job parameters
*
* @access public
* @param string $method
* @param string $url
* @param string $content
* @param array $headers
* @return $this
*/
public function execute($method, $url, $content, array $headers)
{
$this->httpClient->doRequest($method, $url, $content, $headers);
}
}