Package lupos.engine.operators.messages

Examples of lupos.engine.operators.messages.Message.postProcess()


    msg = msg.preProcess(this);
    msg = this.forwardMessage(msg);
    if (msg == null) {
      return null;
    } else {
      return msg.postProcess(this);
    }
  }

  /**
   * This method forwards the message to the succeeding operators.
View Full Code Here


    final Message msgResult = this.forwardMessage(msg.preProcess(this));
    // postprocess anyway one message, does not matter if the resultant msg is null or not to allow processing right after initialization
    if(msgResult == null) {
      return msg.postProcess(this);
    } else {
      return msgResult.postProcess(this);
    }
  }

  /**
   * This method starts processing a simple visitor in the whole operator
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.