<?php

namespace Swoole\Thread;

use Countable;

class Queue implements Countable
{
    public function __construct() {}

    public function push(mixed $value, int $notify_which = 0): void {}

    public function pop(float $wait = 0): mixed {}

    public function count(): int {}

    public function clean(): void {}
}
