-
Notifications
You must be signed in to change notification settings - Fork 55
/
ContextManager.php
42 lines (36 loc) · 1.1 KB
/
ContextManager.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Enqueue\MessengerAdapter;
use Interop\Queue\Context;
/**
* It is responsible of managing the queue context. It will ensure the queue is successfully created
* and is ready to work.
*
* @author Samuel Roze <[email protected]>
*/
interface ContextManager
{
/**
* Returns the associated `context` object.
*/
public function context(): Context;
/**
* Recover from the given exception. This can typically be something like the queue or topic do not exists.
*
* Returns `true` if it did manage to recover and `false` if it can't.
*/
public function recoverException(\Exception $exception, array $destination): bool;
/**
* Ensure that the given destination exists.
*
* In the example of AMQP, it will create the topic, queue & binding.
*/
public function ensureExists(array $destination): bool;
}