20 lines
411 B
PHP
Raw Normal View History

2014-03-24 16:51:49 +01:00
<?php
namespace DesignPatterns\Creational\Pool;
2014-03-24 16:51:49 +01:00
class Worker
{
public function __construct()
{
2014-04-08 11:29:40 +02:00
// let's say that constuctor does really expensive work...
2014-03-24 16:51:49 +01:00
// for example creates "thread"
}
2014-04-08 11:29:03 +02:00
public function run($image, array $callback)
{
2014-03-24 16:51:49 +01:00
// do something with $image...
// and when it's done, execute callback
call_user_func($callback, $this);
2014-04-08 11:29:03 +02:00
}
2014-03-24 16:51:49 +01:00
}