DesignPatternsPHP/Pool/Worker.php
Jan Brecka 65e48b2d30 typo
2014-04-08 11:29:40 +02:00

22 lines
402 B
PHP

<?php
namespace DesignPatterns\Pool;
class Worker
{
public function __construct()
{
// let's say that constuctor does really expensive work...
// for example creates "thread"
}
public function run($image, array $callback)
{
// do something with $image...
// and when it's done, execute callback
call_user_func($callback, $this);
}
}