La classe Swoole\WebSocket\Server

(PECL swoole >= 1.9.0)

Introduction

Synopsis de la classe

class Swoole\WebSocket\Server extends Swoole\Http\Server {
/* Méthodes */
public function exist(int $fd): bool
public function on(string $event_name, callable $callback): ReturnType
public static function pack(
    string $data,
    string $opcode = ?,
    string $finish = ?,
    string $mask = ?
): binary
public function push(
    string $fd,
    string $data,
    string $opcode = ?,
    string $finish = ?
): void
public static function unpack(binary $data): string
/* Méthodes héritées */
public function Swoole\Http\Server::on(string $event_name, callable $callback): void
public function Swoole\Http\Server::start(): void
}

Sommaire

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top