Package co.cask.tigon.api.flow.flowlet

Examples of co.cask.tigon.api.flow.flowlet.FlowletContext


    healthInspector.startAndWait();
  }

  @Override
  public void announceReady() {
    FlowletContext ctx = getContext();
    for (String key : dataIngestionPortsMap.keySet()) {
      portsAnnouncementList.add(ctx.announce(key, inputFlowletService.getDataPort(key)));
      LOG.info("Announced Data Port {} - {}", key, inputFlowletService.getDataPort(key));
    }
  }
View Full Code Here

TOP

Related Classes of co.cask.tigon.api.flow.flowlet.FlowletContext

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.