Package com.sissi.pipeline

Examples of com.sissi.pipeline.Input


  @Override
  public Input find(Protocol protocol) {
    for (InputCondition each : this.conditions) {
      if (each.matcher().match(protocol)) {
        Input input = each.input();
        this.log.debug("Input " + input.getClass() + " for " + protocol.getClass());
        return each.input();
      }
    }
    return this.nothing;
  }
View Full Code Here

TOP

Related Classes of com.sissi.pipeline.Input

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.