pixelfederation/swoole-bundle

View on GitHub
src/Component/Locking/Mutex.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace K911\Swoole\Component\Locking;

interface Mutex
{
    public function acquire(): void;

    public function release(): void;

    public function isAcquired(): bool;
}