1
0
Fork 0
mirror of synced 2025-04-04 21:53:37 +03:00

Compare commits

...

6 commits

Author SHA1 Message Date
Alex Lushpai
a06ec22341
Merge pull request #9 from curse89/modify-middleware
add-ttl-for-middleware
2023-10-18 14:28:42 +03:00
Сергей Кривич
f15d9a2a86 add-ttl-for-middleware 2023-10-18 14:15:32 +03:00
Alex Lushpai
a104eebf2a
Bump symfony validator to 5.3 2021-10-18 11:08:08 +03:00
Sergey Chazov
3f87618424 bump symfony validator to 5.3 2021-08-17 17:53:44 +03:00
Alex Lushpai
5520c4ca68
Fix serialization for transport php serializer 2021-04-22 14:57:08 +03:00
Akolzin Dmitry
ac0a1ae95d fix serialization for transport php serializer 2021-04-22 14:55:30 +03:00
3 changed files with 10 additions and 4 deletions

View file

@ -105,7 +105,7 @@ abstract class CommandMessage
public function __serialize(): array
{
return [
'command' => $this->getCommandName(),
'commandName' => $this->getCommandName(),
'arguments' => $this->getArguments(),
'options' => $this->getOptions()
];

View file

@ -21,9 +21,15 @@ class LockableMessageMiddleware implements MiddlewareInterface
*/
private $lockFactory;
public function __construct(LockFactory $lockFactory)
/**
* @var int|null
*/
private $ttl;
public function __construct(LockFactory $lockFactory, int $ttl = null)
{
$this->lockFactory = $lockFactory;
$this->ttl = $ttl;
}
/**
@ -39,7 +45,7 @@ class LockableMessageMiddleware implements MiddlewareInterface
$message = $envelope->getMessage();
if ($envelope->all(ReceivedStamp::class) && $message instanceof LockableMessage) {
$lock = $this->lockFactory->createLock($this->objectHash($message), null);
$lock = $this->lockFactory->createLock($this->objectHash($message), $this->ttl);
if (!$lock->acquire()) {
return $envelope;
}

View file

@ -15,7 +15,7 @@
"symfony/framework-bundle": "^4.0|^5.0",
"symfony/serializer": "^5.2",
"symfony/http-kernel": "^4.0|^5.0",
"symfony/validator": "^4.0|^5.0",
"symfony/validator": "^4.0|^5.3",
"symfony/security-guard": "^4.0|^5.0",
"symfony/console": "^5.2",
"symfony/messenger": "^5.2",