Package org.springframework.xd.integration.hadoop.expression

Examples of org.springframework.xd.integration.hadoop.expression.MessageExpressionMethods


      if (expressionParser == null) {
        // default to mixed mode
        expressionParser = new SpelExpressionParser(new SpelParserConfiguration(SpelCompilerMode.MIXED, null));
      }
      this.expression = expressionParser.parseExpression(expression);
      this.methods = new MessageExpressionMethods(evaluationContext, true, true);
      log.info("Using expression=[" + this.expression.getExpressionString() + "]");
    }
View Full Code Here


      log.info("Using expression=[" + this.expression.getExpressionString() + "]");
    }

    public MessagePartitionResolver(Expression expression, StandardEvaluationContext evaluationContext) {
      this.expression = expression;
      this.methods = new MessageExpressionMethods(evaluationContext);
      log.info("Using expression=[" + this.expression.getExpressionString() + "]");
    }
View Full Code Here

TOP

Related Classes of org.springframework.xd.integration.hadoop.expression.MessageExpressionMethods

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.