Skip to content

Commit b84d8a3

Browse files
committed
some update
1 parent 104087a commit b84d8a3

File tree

2 files changed

+111
-2
lines changed

2 files changed

+111
-2
lines changed

README.md

+111
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,117 @@ handle the event messageSent on the: Inhere\Event\Examples\ExamHandler::handle
190190

191191
## 一组事件的监听器
192192

193+
### 一个简单的应用类
194+
195+
```php
196+
197+
/**
198+
* Class App
199+
* @package Inhere\Event\Examples
200+
*/
201+
class App
202+
{
203+
const ON_START = 'app.start';
204+
const ON_STOP = 'app.stop';
205+
const ON_BEFORE_REQUEST = 'app.beforeRequest';
206+
const ON_AFTER_REQUEST = 'app.afterRequest';
207+
208+
use EventAwareTrait;
209+
210+
public function __construct(EventManager $em)
211+
{
212+
$this->setEventManager($em);
213+
214+
$this->eventManager->trigger(self::ON_START, new Event('start', [
215+
'key' => 'val'
216+
]));
217+
}
218+
219+
public function run()
220+
{
221+
$this->eventManager->trigger(self::ON_BEFORE_REQUEST, new Event('beforeRequest'));
222+
223+
$sleep = 0;
224+
225+
echo 'handling ';
226+
227+
while ($sleep <= 5) {
228+
$sleep++;
229+
230+
echo '.';
231+
232+
sleep(1);
233+
}
234+
235+
echo "\n";
236+
237+
$this->eventManager->trigger(self::ON_AFTER_REQUEST, new Event('afterRequest'));
238+
}
239+
240+
public function __destruct()
241+
{
242+
$this->eventManager->trigger(self::ON_STOP, new Event('stop', [
243+
'key1' => 'val1'
244+
]));
245+
}
246+
}
247+
```
248+
249+
### 监听器类
250+
251+
里面存在跟事件相同名称的方法
252+
253+
```php
254+
255+
/**
256+
* Class AppListener
257+
* @package Inhere\Event\Examples
258+
*/
259+
class AppListener
260+
{
261+
public function start(EventInterface $event)
262+
{
263+
$pos = __METHOD__;
264+
echo "handle the event {$event->getName()} on the: $pos\n";
265+
}
266+
267+
public function beforeRequest(EventInterface $event)
268+
{
269+
$pos = __METHOD__;
270+
echo "handle the event {$event->getName()} on the: $pos\n";
271+
}
272+
273+
public function afterRequest(EventInterface $event)
274+
{
275+
$pos = __METHOD__;
276+
echo "handle the event {$event->getName()} on the: $pos\n";
277+
}
278+
279+
public function stop(EventInterface $event)
280+
{
281+
$pos = __METHOD__;
282+
echo "handle the event {$event->getName()} on the: $pos\n";
283+
}
284+
}
285+
```
286+
287+
### 准备运行
288+
289+
```php
290+
$em = new EventManager();
291+
292+
// register a group listener
293+
$em->attach('app', new AppListener());
294+
295+
// create app
296+
$app = new App($em);
297+
298+
// run.
299+
$app->run();
300+
```
301+
302+
### 执行
303+
193304
完整的实例代码在 `examples/group.php` 中。
194305

195306
运行: `php examples/group.php`

examples/App.php

-2
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,7 @@ public function run()
4444

4545
while ($sleep <= 5) {
4646
$sleep++;
47-
4847
echo '.';
49-
5048
sleep(1);
5149
}
5250

0 commit comments

Comments
 (0)