Update async-queue.md (#2996)

Co-authored-by: 李铭昕 <715557344@qq.com>
This commit is contained in:
huxiuhang 2020-12-21 13:22:46 +08:00 committed by GitHub
parent 0a6ba00cc5
commit 16a5bbfd90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -283,6 +283,9 @@ class QueueController extends AbstractController
框架除了传统方式投递消息,还提供了注解方式。
> 注解方式会在非消费环境下自动投递消息到队列,故,如果我们在队列中使用注解方式时,则不会再次投递到队列当中,而是直接在本消费进程中执行。
> 如果仍然需要在队列中投递消息,则可以在队列中使用传统模式投递。
让我们重写上述 `QueueService`,直接将 `ExampleJob` 的逻辑搬到 `example` 方法中,并加上对应注解 `AsyncQueueMessage`,具体代码如下。
```php