Skip to content

Commit

Permalink
Comments
Browse files Browse the repository at this point in the history
  • Loading branch information
gggeek committed Sep 1, 2015
1 parent 885f8d3 commit 4d7ebd2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Adapter/DriverInterface.php
Expand Up @@ -6,10 +6,10 @@

/**
* Drivers are tasked to
* 1. manage MessageProducer objects, tasked to send messages
* 2. decode native messages into bundle messages
* 3. enable/disable debug mode
* 4. provide service ids for consumers
* 1. build Producer objects, tasked to send messages
* 2. build Consumer objects, tasked to receive messages in a loop and forward them to MessageConsumers
* 3. decode native messages into bundle messages
* 4. enable/disable debug mode
*/
interface DriverInterface
{
Expand Down
4 changes: 4 additions & 0 deletions Adapter/DriverManager.php
Expand Up @@ -4,6 +4,10 @@

use Symfony\Component\DependencyInjection\ContainerInterface;

/**
* A factory for drivers, with a few extra capabilities.
* Drivers get registered by a compiler pass.
*/
class DriverManager
{
protected $aliases = array();
Expand Down

0 comments on commit 4d7ebd2

Please sign in to comment.