Package org.jpos.iso

Examples of org.jpos.iso.ISOSource


  }

  @Override
  public void messageProcessTC(IMessage message) {
    try {
      ISOSource source = null;
      MessageID msgId = new MessageID(messageIDInfo, message);
      synchronized (this) {
          source = table.remove(msgId);
      }
      if (source != null) {
        if (logger.isDebugEnabled())
          logger.debug(channelName+":"+source.toString()+"| Enviando mensaje.|" + message);
        source.send((ISOMsg) message);
      } else {
        logger.error(channelName+"|Mensaje para cliente desconocido.|"+message);
      }
    } catch (Exception e) {
      if (logger.isDebugEnabled())
View Full Code Here

TOP

Related Classes of org.jpos.iso.ISOSource

Copyright © 2018 www.massapicom. 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.