21 lines
175 B
PHP
21 lines
175 B
PHP
<?php
|
|
|
|
|
|
namespace Snowflake\Process;
|
|
|
|
|
|
class PrintIn extends Process
|
|
{
|
|
|
|
|
|
public function onHandler(\Swoole\Process $process)
|
|
{
|
|
do {
|
|
|
|
sleep(1);
|
|
|
|
} while (true);
|
|
}
|
|
|
|
}
|