Skip to content

Commit

Permalink
Rename the BlockedRelayInterface to BlockingRelayInterface
Browse files Browse the repository at this point in the history
  • Loading branch information
roxblnfk committed Oct 3, 2023
1 parent 189dcf7 commit b7f40b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Worker.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace Spiral\RoadRunner;

use Psr\Log\LoggerInterface;
use Spiral\Goridge\BlockedRelayInterface;
use Spiral\Goridge\BlockingRelayInterface;
use Spiral\Goridge\Exception\GoridgeException;
use Spiral\Goridge\Exception\TransportException;
use Spiral\Goridge\Frame;
Expand Down Expand Up @@ -174,7 +174,7 @@ private function findPayload(string $class = null): ?int
*/
private function pullPayload(): ?Payload
{
if (!$this->waitingPong && $this->relay instanceof BlockedRelayInterface) {
if (!$this->waitingPong && $this->relay instanceof BlockingRelayInterface) {
if (!$this->streamMode) {
return null;
}
Expand Down

0 comments on commit b7f40b5

Please sign in to comment.