Home
last modified time | relevance | path

Searched refs:Event (Results 226 – 250 of 313) sorted by last modified time

12345678910>>...13

/plugin/findologicxmlexport/vendor/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;
H A DListenable.php37 namespace 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)
/plugin/findologicxmlexport/vendor/hoa/file/
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([
H A DCHANGELOG.md27 * Event: Use `Hoa\Event`. (Ivan Enderlin, 2015-11-23T22:08:07+01:00)
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/js/
H A Djquery.min.js3Event.prototype,a,{enumerable:!0,configurable:!0,get:r.isFunction(b)?function(){if(this.originalEv…
4Event(p,"object"==typeof b&&b),b.isTrigger=f?2:3,b.namespace=q.join("."),b.rnamespace=b.namespace?…
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/EventDispatcher/
H A DEventDispatcherTest.php9 use JMS\Serializer\EventDispatcher\Event; alias
119 $this->dispatcher->addListener('pre', static function (Event $event) use (&$listener1) {
140 …$this->dispatcher->addListener('pre', static function (Event $event, $eventName, $loweredClass, $f…
143 $event = new Event($event->getContext(), $event->getType());
156 …$this->dispatcher->addListener('post', static function (Event $event, $eventName, $loweredClass, $…
203 protected function dispatch($eventName, $class = 'Foo', $format = 'json', ?Event $event = null)
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
H A DJsonSerializationTest.php8 use JMS\Serializer\EventDispatcher\Event; alias
168 $this->dispatcher->addListener('serializer.post_serialize', static function (Event $event) {
174 $this->dispatcher->addListener('serializer.post_serialize', static function (Event $event) {
431 public function onPostSerialize(Event $event)
451 public function onPostSerialize(Event $event)
/plugin/findologicxmlexport/vendor/hoa/compiler/
H A DREADME.md263 [details](https://hoa-project.net/En/Event/Amost12.html)).
/plugin/findologicxmlexport/vendor/hoa/exception/
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/stream/
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
/plugin/findologicxmlexport/vendor/jms/serializer/src/EventDispatcher/
H A DEvent.php10 class Event class
51 * @see Event::stopPropagation()
H A DEventDispatcher.php85 public function dispatch(string $eventName, string $class, string $format, Event $event): void
H A DObjectEvent.php9 class ObjectEvent extends Event
H A DEventDispatcherInterface.php20 public function dispatch(string $eventName, string $class, string $format, Event $event): void;
/plugin/findologicxmlexport/vendor/jms/serializer/src/EventDispatcher/Subscriber/
H A DSymfonyValidatorValidatorSubscriber.php7 use JMS\Serializer\EventDispatcher\Event; alias
34 public function onPostDeserialize(Event $event): void
/plugin/findologicxmlexport/vendor/hoa/consistency/
H A DREADME.md160 [`Hoa\Event`](https://central.hoa-project.net/Resource/Library/Event)
227 argument is of kind `Hoa\Event\Bucket`, then the method name will be deduced
232 Hoa\Event\Event::getEvent('hoa://Event/Exception')
236 The `attach` method on `Hoa\Event\Event` transforms its argument as an
240 on the `hoa://Event/Exception` event channel.
/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())

12345678910>>...13