Swoole\Process\Pool->on('message', fn)

4.x is outdated, please check the latest version 22.x


Latest version: pecl install openswoole-22.1.2

Declaration

<?php Swoole\Process\Pool->on('start', callback $callback)

Parameters

event

The event name

callback

callback function

Return

success

if success, it returns TRUE, otherwise it returns FALSE.

Description

Executue the callback function when receiving messages.

Example

<?php

$workerNum = 10;
$pool = new Swoole\Process\Pool($workerNum);

$pool->on("WorkerStart", function (Swoole\Process\Pool $pool, int $workerId) {
    echo "Worker#{$workerId} is started\n";
    $redis = new Redis();
    $redis->pconnect('127.0.0.1', 6379);
    $key = "key1";
    while (true) {
         $msgs = $redis->brpop($key, 2);
         if ( $msgs == null) continue;
         var_dump($msgs);
     }
});

$pool->on("WorkerStop", function (Swoole\Process\Pool $pool, int $workerId) {
    echo "Worker#{$workerId} is stopped\n";
});

$pool->on('message', function(Swoole\Process\Pool $pool, string $data) {
    echo "$data\n";
});

$pool->start();
Last updated on August 31, 2022