dubture/async-bundle
最新稳定版本:0.0.1
Composer 安装命令:
composer require dubture/async-bundle
包简介
Provides an easy to use abstraction for async backend workers in Symfony2
README 文档
README
This Symfony bundle provides a high-level way of sending expensive logic to background workers.
Configuration
- Install the bundle using
composer require "dubture/async-bundle" - Add the necessary bundles to your Kernel:
// app/AppKernel.php public function registerBundles() { $bundles = array( // register the async bundle new Dubture\AsyncBundle\DubtureAsyncBundle(), // register the dependencies of the async bundle new JMS\DiExtraBundle\JMSDiExtraBundle($this), new JMS\AopBundle\JMSAopBundle(), // your application bundles here... ); return $bundles; }
- Configure which backend to use:
# app/config/config.yml dubture_async: backend: rabbitmq # one of rabbitmq|resque|sonata|runtime
Usage
Consider the following service:
<services> <service class="Acme\Bundle\MediaTranscodingService" id="media_transcoder"> </service> </services>
class MediaTranscodingService { public function transcodeFile($sourcePath) { // ... do some heavy-lifting, e.g. media transcoding } }
If you want to delegate this method to a background worker, this is all you need to do:
use Dubture\AsyncBundle\Annotation\Async; class MediaTranscodingService { /** * @Async */ public function transcodeFile($sourcePath) { // ... do some heavy-lifting, e.g. media transcoding } }
Now any call to transcodeFile will be intercepted and delegated to a background worker.
Methods annotated with @Async need to adhere to the following contract:
- The class declaring the async method must be a service
- The methods arguments must be serializable (no resources, e.g. doctrine connections)
- The method should not return anything (any return value will be lost)
If you need to react to something happening inside your background worker, you can simply dispatch events when it's done.
The background-worker implementation relies on one of the following bundles:
- https://github.com/michelsalib/BCCResqueBundle (resque)
- https://github.com/videlalvaro/RabbitMqBundle (rabbitmq)
- https://github.com/sonata-project/SonataNotificationBundle (see sonata bundle for available backends)
See Resources/docs for documentation of the specific backends.
统计信息
- 总下载量: 24
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-04-16