forked from sroze/messenger-enqueue-transport
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathContextManager.php
53 lines (47 loc) · 1.31 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
43
44
45
46
47
48
49
50
51
52
53
<?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\PsrContext;
/**
* It is reponsible 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 `PsrContext` object.
*
* @return PsrContext
*/
public function psrContext(): PsrContext;
/**
* 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.
*
* @param \Exception $exception
* @param array $destination
*
* @return bool
*/
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.
*
* @param array $destination
*
* @return bool
*/
public function ensureExists(array $destination): bool;
}