/**
  * @param string $source
  * @param string $process
  * @param string $port
  */
 public function __construct($source, $process = '\\PowerEcommerce\\App\\PowerEcommerce\\System\\Process\\Router', $port = 'powerecommerce.system.router')
 {
     parent::__construct($source);
     $this->setThread($source);
     $this->setProcess($process);
     $this->setPort($port);
 }
 /**
  * @param string $source
  * @param string $port
  */
 public function __construct($source, $port = 'powerecommerce.system.router')
 {
     parent::__construct($source);
     $this->setProcess($source);
     $this->setPort($port);
 }