Examples of AdapterWfNotifyInfo


Examples of de.scoopgmbh.copper.monitoring.core.model.AdapterWfNotifyInfo

 
  public void submitAdapterWfNotify(final String correlationId, final Object message, final Object adapter) {
    monitoringQueue.offer(new MonitoringDataAwareRunnable() {
      @Override
      public void run() {
        monitoringDataAdder.addMonitoringData(new AdapterWfNotifyInfo(correlationId, message!=null?message.toString():"null", new Date(), adapter.getClass().getName()));
      }
    });
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.