Home
last modified time | relevance | path

Searched refs:Event (Results 151 – 175 of 313) sorted by path

12345678910>>...13

/plugin/findologicxmlexport/vendor/hoa/event/
H A DBucket.php37 namespace Hoa\Event;
86 return Event::notify($eventId, $source, $this);
H A DCHANGELOG.md29 * Test: Write test suite for `Hoa\Event\Listens`. (Ivan Enderlin, 2015-11-23T21:25:49+01:00)
35 * Test: Write test suite for `Hoa\Event\Event`. (Ivan Enderlin, 2015-11-11T17:04:41+01:00)
36 * Test: Write test suite for `Hoa\Event\Exception`. (Ivan Enderlin, 2015-11-11T16:46:12+01:00)
38 * Test: Write test suite for `Hoa\Event\Listener`. (Ivan Enderlin, 2015-11-11T13:27:40+01:00)
39 * Test: Write test suite for `Hoa\Event\Source`. (Ivan Enderlin, 2015-11-10T21:56:37+01:00)
40 * Test: Write test suite for `Hoa\Event\Listenable`. (Ivan Enderlin, 2015-11-10T21:56:24+01:00)
41 * Test: Write test suite for `Hoa\Event\Bucket`. (Ivan Enderlin, 2015-11-10T21:55:45+01:00)
H A DEvent.php37 namespace Hoa\Event;
51 class Event class
H A DException.php37 namespace Hoa\Event;
H A DListenable.php37 namespace Hoa\Event;
H A DListener.php37 namespace Hoa\Event;
H A DListens.php37 namespace Hoa\Event;
H A DREADME.md19 # Hoa\Event
29 [Learn more](https://central.hoa-project.net/Documentation/Library/Event).
76 `hoa://Event/LibraryName/AnId:pseudo-class#anAnchor`. For instance, the
77 `hoa://Event/Exception` channel contains all exceptions that have been thrown.
78 The `hoa://Event/Stream/StreamName:close-before` contains all streams that are
82 Hoa\Event\Event::getEvent('hoa://Event/Exception')->attach(
83 function (Hoa\Event\Bucket $bucket) {
96 Hoa\Event\Event::getEvent('hoa://Event/Exception')->attach(
113 The `Hoa\Event\Listenable` interface requires the `on` method to be present to
120 $server->on('message', function (Hoa\Event\Bucket $bucket) {
[all …]
H A DSource.php37 namespace Hoa\Event;
/plugin/findologicxmlexport/vendor/hoa/event/Test/Unit/
H A DBucket.php37 namespace Hoa\Event\Test\Unit;
39 use Hoa\Event as LUT;
40 use Hoa\Event\Bucket as SUT;
71 $source = new \Mock\Hoa\Event\Source(),
99 $sourceA = new \Mock\Hoa\Event\Source()
108 ->given($sourceB = new \Mock\Hoa\Event\Source())
H A DEvent.php37 namespace Hoa\Event\Test\Unit;
39 use Hoa\Event as LUT;
40 use Hoa\Event\Event as SUT;
51 class Event extends Test\Unit\Suite class
70 $source = new \Mock\Hoa\Event\Source()
100 $source = new \Mock\Hoa\Event\Source(),
140 $source = new \Mock\Hoa\Event\Source(),
154 $source = new \Mock\Hoa\Event\Source(),
239 $source = new \Mock\Hoa\Event\Source(),
268 $source = new \Mock\Hoa\Event\Source(),
[all …]
H A DException.php37 namespace Hoa\Event\Test\Unit;
39 use Hoa\Event\Exception as SUT;
H A DListenable.php37 namespace Hoa\Event\Test\Unit;
54 ->when($result = new \Mock\Hoa\Event\Listenable())
H A DListener.php37 namespace Hoa\Event\Test\Unit;
39 use Hoa\Event as LUT;
40 use Hoa\Event\Listener as SUT;
57 $source = new \Mock\Hoa\Event\Listenable(),
76 $source = new \Mock\Hoa\Event\Listenable(),
95 $source = new \Mock\Hoa\Event\Listenable(),
110 $source = new \Mock\Hoa\Event\Listenable(),
130 $source = new \Mock\Hoa\Event\Listenable(),
175 $source = new \Mock\Hoa\Event\Listenable(),
198 $source = new \Mock\Hoa\Event\Listenable(),
[all …]
H A DListens.php37 namespace Hoa\Event\Test\Unit;
39 use Hoa\Event as LUT;
40 use Hoa\Event\Listens as SUT;
H A DSource.php37 namespace Hoa\Event\Test\Unit;
54 ->when($result = new \Mock\Hoa\Event\Source())
/plugin/findologicxmlexport/vendor/hoa/exception/
H A DException.php40 use Hoa\Event; alias
50 class Exception extends Idle implements Event\Source
71 if (false === Event::eventExists('hoa://Event/Exception')) {
72 Event::register('hoa://Event/Exception', __CLASS__);
87 Event::notify(
90 new Event\Bucket($this)
H A DREADME.md27 (that are sent over the `hoa://Event/Exception` event channel), idle exceptions
114 on the `hoa://Event/Exception` event channel (please, see [the `Hoa\Event`
115 library](http://central.hoa-project.net/Resource/Library/Event)). Consequently,
119 Hoa\Event\Event::getEvent('hoa://Event/Exception')->attach(
120 function (Hoa\Event\Bucket $bucket) {
/plugin/findologicxmlexport/vendor/hoa/exception/Test/Unit/
H A DException.php39 use Hoa\Event; alias
66 ->when($result = Event::eventExists('hoa://Event/Exception'))
78 Event::getEvent('hoa://Event/Exception')->attach(
79 function (Event\Bucket $bucket) use ($self, &$called) {
/plugin/findologicxmlexport/vendor/hoa/file/
H A DCHANGELOG.md27 * Event: Use `Hoa\Event`. (Ivan Enderlin, 2015-11-23T22:08:07+01:00)
H A DWatcher.php39 use Hoa\Event; alias
49 class Watcher extends Finder implements Event\Listenable
51 use Event\Listens;
72 new Event\Listener(
110 new Event\Bucket([
127 new Event\Bucket([
139 new Event\Bucket([
/plugin/findologicxmlexport/vendor/hoa/stream/
H A DCHANGELOG.md90 * Event: Use `Hoa\Event`. (Ivan Enderlin, 2015-11-23T21:43:51+01:00)
H A DREADME.md230 2 events are registered: `hoa://Event/Stream/<streamName>` and
231 `hoa://Event/Stream/<streamName>:close-before`. Thus, for instance, to
236 Hoa\Event\Event::getEvent('hoa://Event/Stream//path/to/file:close-before')->attach(
237 function (Hoa\Event\Bucket $bucket) {
283 function (Hoa\Event\Bucket $bucket) {
289 function (Hoa\Event\Bucket $bucket) {
295 function (Hoa\Event\Bucket $bucket) {
301 function (Hoa\Event\Bucket $bucket) {
307 function (Hoa\Event\Bucket $bucket) {
359 [the `Hoa\Event` library](https://central.hoa-project.net/Resource/Library/Event). Not
H A DStream.php40 use Hoa\Event; alias
51 abstract class Stream implements IStream\Stream, Event\Listenable
53 use Event\Listens;
157 new Event\Listener(
222 Event::register(
227 Event::register(
317 Event::notify(
320 new Event\Bucket()
329 Event::unregister(
332 Event::unregister(
[all …]
/plugin/findologicxmlexport/vendor/hoa/stream/Test/Integration/
H A DStream.php39 use Hoa\Event; alias

12345678910>>...13