Example #1
0
 /**
  * Send notifications about completed action
  * @param string $message Notification message
  * @return bool
  */
 public function notify($message)
 {
     $this->logger->info('Node notification sent', ['nodeName' => $this->name, 'notifyType' => 'complete']);
     return $this->rabbit->write($message, $this->name . '_notify');
 }