This repository has been archived by the owner on Jan 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/events-shared-aggregates' into develop
- Loading branch information
116 parents
ee1d485
+
55ca933
+
58174bc
+
1804746
+
67c0075
+
e5983dd
+
a8b3425
+
a2a193a
+
33d1c27
+
1d5cfa1
+
460ae0b
+
c577f06
+
db33b2e
+
fea371a
+
c93bbae
+
a4ff530
+
cbd4621
+
4b4dffb
+
00380d2
+
3895f9f
+
6349844
+
b6905a7
+
b7735a0
+
8312aef
+
7be4333
+
8625190
+
4dd38f5
+
e02bd81
+
87c797f
+
73208bf
+
0272cd1
+
1fcbea4
+
197a891
+
5859e98
+
d34ef1c
+
e06dc2f
+
4907ff6
+
fd0e0ba
+
891fbf7
+
83d5b01
+
4579f15
+
c86ed1e
+
16b8f20
+
83086b6
+
a81c8a5
+
a85d989
+
55ef06c
+
a2d63b1
+
8210d1d
+
0a08fc0
+
7d37340
+
ab0ab2a
+
b9e0b9b
+
e1d4bda
+
e251276
+
161ba87
+
f10c77c
+
58cc6ef
+
cecfbb0
+
c165fb8
+
1febb29
+
3325e48
+
8b68fab
+
43c1b37
+
ec52465
+
2904103
+
e4d7a5a
+
be7b13f
+
f8dd43d
+
b1b3322
+
93ccc75
+
2d494af
+
25e9a69
+
3f70aa8
+
598d6ed
+
8161582
+
c01dc55
+
98634fe
+
0c55546
+
1c83b8f
+
815d8cc
+
19c90c8
+
5dbf1b9
+
4a927fd
+
4a648ec
+
d0636ac
+
840f139
+
aafb3ee
+
8600965
+
b26220b
+
860ba0d
+
759cd42
+
eebf7bc
+
6546e0d
+
11d36d3
+
4a1db1e
+
04eebff
+
892dcff
+
b878b24
+
2db85a1
+
97242e6
+
9ee6b4d
+
13fabed
+
8fe32d7
+
984be73
+
be29716
+
41232e8
+
1b6d07e
+
8cd4674
+
cdb0e25
+
e5aa383
+
9af5add
+
309bc00
+
035474f
+
fc3991f
+
b235040
commit d41e72e
Showing
6 changed files
with
203 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?php | ||
/** | ||
* Zend Framework (http://framework.zend.com/) | ||
* | ||
* @link http://github.com/zendframework/zf2 for the canonical source repository | ||
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
* @package Zend_EventManager | ||
*/ | ||
|
||
namespace Zend\EventManager; | ||
|
||
|
||
/** | ||
* Interface for allowing attachment of shared aggregate listeners. | ||
* | ||
* @category Zend | ||
* @package Zend_EventManager | ||
*/ | ||
interface SharedEventAggregateAwareInterface | ||
{ | ||
/** | ||
* Attach a listener aggregate | ||
* | ||
* @param SharedListenerAggregateInterface $aggregate | ||
* @param int $priority If provided, a suggested priority for the aggregate to use | ||
* @return mixed return value of {@link SharedListenerAggregateInterface::attachShared()} | ||
*/ | ||
public function attachAggregate(SharedListenerAggregateInterface $aggregate, $priority = 1); | ||
|
||
/** | ||
* Detach a listener aggregate | ||
* | ||
* @param SharedListenerAggregateInterface $aggregate | ||
* @return mixed return value of {@link SharedListenerAggregateInterface::detachShared()} | ||
*/ | ||
public function detachAggregate(SharedListenerAggregateInterface $aggregate); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,5 +66,4 @@ public function getEvents($id); | |
* @return bool | ||
*/ | ||
public function clearListeners($id, $event = null); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?php | ||
/** | ||
* Zend Framework (http://framework.zend.com/) | ||
* | ||
* @link http://github.com/zendframework/zf2 for the canonical source repository | ||
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
* @package Zend_EventManager | ||
*/ | ||
|
||
namespace Zend\EventManager; | ||
|
||
/** | ||
* Interface for self-registering event listeners. | ||
* | ||
* Classes implementing this interface may be registered by name or instance | ||
* with an SharedEventManager, without an event name. The {@link attach()} method will | ||
* then be called with the current SharedEventManager instance, allowing the class to | ||
* wire up one or more listeners. | ||
* | ||
* @category Zend | ||
* @package Zend_EventManager | ||
*/ | ||
interface SharedListenerAggregateInterface | ||
{ | ||
/** | ||
* Attach one or more listeners | ||
* | ||
* Implementors may add an optional $priority argument; the SharedEventManager | ||
* implementation will pass this to the aggregate. | ||
* | ||
* @param SharedEventManagerInterface $events | ||
*/ | ||
public function attachShared(SharedEventManagerInterface $events); | ||
|
||
/** | ||
* Detach all previously attached listeners | ||
* | ||
* @param SharedEventManagerInterface $events | ||
*/ | ||
public function detachShared(SharedEventManagerInterface $events); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<?php | ||
/** | ||
* Zend Framework (http://framework.zend.com/) | ||
* | ||
* @link http://github.com/zendframework/zf2 for the canonical source repository | ||
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
* @package Zend_EventManager | ||
*/ | ||
|
||
namespace ZendTest\EventManager\TestAsset; | ||
|
||
use Zend\EventManager\SharedEventManagerInterface; | ||
use Zend\EventManager\SharedListenerAggregateInterface; | ||
|
||
/** | ||
* @category Zend | ||
* @package Zend_EventManager | ||
* @subpackage UnitTests | ||
* @group Zend_EventManager | ||
*/ | ||
class SharedMockAggregate implements SharedListenerAggregateInterface | ||
{ | ||
|
||
protected $identity; | ||
|
||
public function __construct($identity) | ||
{ | ||
$this->identity = $identity; | ||
} | ||
|
||
protected $listeners = array(); | ||
public $priority; | ||
|
||
public function attachShared(SharedEventManagerInterface $events, $priority = null) | ||
{ | ||
$this->priority = $priority; | ||
|
||
$listeners = array(); | ||
$listeners[] = $events->attach($this->identity, 'foo.bar', array( $this, 'fooBar' )); | ||
$listeners[] = $events->attach($this->identity, 'foo.baz', array( $this, 'fooBaz' )); | ||
|
||
$this->listeners[ \spl_object_hash($events) ] = $listeners; | ||
|
||
return __METHOD__; | ||
} | ||
|
||
public function detachShared(SharedEventManagerInterface $events) | ||
{ | ||
foreach ($this->listeners[ \spl_object_hash($events) ] as $listener) { | ||
$events->detach($this->identity, $listener); | ||
} | ||
|
||
return __METHOD__; | ||
} | ||
|
||
public function fooBar() | ||
{ | ||
return __METHOD__; | ||
} | ||
|
||
public function fooBaz() | ||
{ | ||
return __METHOD__; | ||
} | ||
} |