notify method

dynamic notify(
  1. dynamic method,
  2. dynamic data
)

Implementation

notify(method, data) {
  var notification = Message.createNotification(method, data);
  logger.debug('notify() [method:' + method + ']');
  return this._transport.send(notification);
}