2017 © Pedro Peláez
 

library event

The Hoa\Event library.

image

hoa/event

The Hoa\Event library.

  • Tuesday, January 23, 2018
  • by Hoa
  • Repository
  • 4 Watchers
  • 22 Stars
  • 435,540 Installations
  • PHP
  • 12 Dependents
  • 0 Suggesters
  • 6 Forks
  • 2 Open issues
  • 7 Versions
  • 14 % Grown

The README.md

Hoa , (*1)


Build status Code coverage Packagist License , (*2)

Hoa is a modular, extensible and structured set of PHP libraries.
Moreover, Hoa aims at being a bridge between industrial and research worlds. , (*3)

Hoa\Event

Help on IRC Help on Gitter Documentation Board, (*4)

This library allows to use events and listeners in PHP. This is an observer design-pattern implementation., (*5)

Learn more., (*6)

Installation

With Composer, to include this library into your dependencies, you need to require hoa/event:, (*7)

$ composer require hoa/event '~2.0'

For more installation procedures, please read the Source page., (*8)

Testing

Before running the test suites, the development dependencies must be installed:, (*9)

$ composer install

Then, to run all the test suites:, (*10)

$ vendor/bin/hoa test:run

For more information, please read the contributor guide., (*11)

Quick usage

We propose a quick overview of how to use events and listeners., (*12)

Events

An event is: * Asynchronous when registering, because the observable may not exist yet while observers start to observe, * Anonymous when using, because the observable has no idea how many and what observers are observing, * It aims at a large diffusion of data through isolated components. Wherever is the observable, we can observe its data., (*13)

In Hoa, an event channel has the following form: hoa://Event/LibraryName/AnId:pseudo-class#anAnchor. For instance, the hoa://Event/Exception channel contains all exceptions that have been thrown. The hoa://Event/Stream/StreamName:close-before contains all streams that are about to close. Thus, the following example will observe all thrown exceptions:, (*14)

Hoa\Event\Event::getEvent('hoa://Event/Exception')->attach(
    function (Hoa\Event\Bucket $bucket) {
        var_dump(
            $bucket->getSource(),
            $bucket->getData()
        );
    }
);

Because attach expects a callable and because Hoa's callable implementation is smart, we can directly attach a stream to an event, like:, (*15)

Hoa\Event\Event::getEvent('hoa://Event/Exception')->attach(
    new Hoa\File\Write('Foo.log')
);

This way, all exceptions will be printed on the Foo.log file., (*16)

Listeners

Contrary to an event, a listener is: * Synchronous when registering, because the observable must exist before observers can observe, * Identified when using, because the observable knows how many observers are observing, * It aims at a close diffusion of data. The observers must have an access to the observable to observe., (*17)

The Hoa\Event\Listenable interface requires the on method to be present to register a listener to a listener ID. For instance, the following example listens the message listener ID, i.e. when a message is received by the WebSocket server, the closure is executed:, (*18)

$server = new Hoa\Websocket\Server(…);
$server->on('message', function (Hoa\Event\Bucket $bucket) {
    var_dump(
        $bucket->getSource(),
        $bucket->getData()
    );
});

Documentation

The hack book of Hoa\Event contains detailed information about how to use this library and how it works., (*19)

To generate the documentation locally, execute the following commands:, (*20)

$ composer require --dev hoa/devtools
$ vendor/bin/hoa devtools:documentation --open

More documentation can be found on the project's website: hoa-project.net., (*21)

Getting help

There are mainly two ways to get help:, (*22)

Contribution

Do you want to contribute? Thanks! A detailed contributor guide explains everything you need to know., (*23)

License

Hoa is under the New BSD License (BSD-3-Clause). Please, see LICENSE for details., (*24)

The Versions

23/01 2018

dev-master

9999999-dev https://hoa-project.net/

The Hoa\Event library.

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

library event listener observer

30/08 2017

2.17.08.30

2.17.08.30 https://hoa-project.net/

The Hoa\Event library.

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

library event listener observer

13/01 2017

1.17.01.13

1.17.01.13 https://hoa-project.net/

The Hoa\Event library.

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

library event listener observer

19/11 2016

1.16.11.19

1.16.11.19 https://hoa-project.net/

The Hoa\Event library.

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

library event listener observer

15/03 2016

1.16.03.15

1.16.03.15 http://hoa-project.net/

The Hoa\Event library.

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

library event listener observer

11/01 2016

1.16.01.11

1.16.01.11 http://hoa-project.net/

The Hoa\Event library.

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

library event listener observer

23/11 2015

0.15.11.23

0.15.11.23 http://hoa-project.net/

The Hoa\Event library.

  Sources   Download

BSD-3-Clause

The Requires

 

The Development Requires

library event listener observer