@@ -190,6 +190,117 @@ handle the event messageSent on the: Inhere\Event\Examples\ExamHandler::handle
190
190
191
191
## 一组事件的监听器
192
192
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
+
193
304
完整的实例代码在 ` examples/group.php ` 中。
194
305
195
306
运行: ` php examples/group.php `
0 commit comments