Examples of AppWrapper


Examples of ca.uhn.hl7v2.protocol.impl.AppWrapper

   * over-writes the previous one. Note that the wildcard "*" for messageType
   * or triggerEvent means any type or event, respectively.
   */
  public synchronized void registerApplication(String messageType,
      String triggerEvent, Application handler) {
    ReceivingApplication handlerWrapper = new AppWrapper(handler);
    applicationRouter.bindApplication(new AppRoutingDataImpl(messageType, triggerEvent, "*", "*"), handlerWrapper);
  }
View Full Code Here

Examples of ca.uhn.hl7v2.protocol.impl.AppWrapper

   * over-writes the previous one. Note that the wildcard "*" for messageType
   * or triggerEvent means any type or event, respectively.
   */
  public synchronized void registerApplication(String messageType,
      String triggerEvent, Application handler) {
    ReceivingApplication handlerWrapper = new AppWrapper(handler);
    applicationRouter.bindApplication(new AppRoutingDataImpl(messageType, triggerEvent, "*", "*"), handlerWrapper);
  }
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.