コード例 #1
0
ファイル: Subscriber.php プロジェクト: nesquick/trafficcophp
 public function subscribe(AbstractSubscribeMessage $message)
 {
     $this->transport->send($message);
     $this->registered = true;
 }
コード例 #2
0
ファイル: Publisher.php プロジェクト: nesquick/trafficcophp
 public function publish(AbstractPublishMessage $message)
 {
     $this->transport->send($message);
 }