Package co.cask.cdap.api.service

Examples of co.cask.cdap.api.service.AbstractService


    addService(new SingleRunnableApplication(runnable, specification));
  }

  @Override
  public void addService(final String serviceName, final Iterable<? extends HttpServiceHandler> handlers) {
    AbstractService serviceFromHandler = new AbstractService() {
      @Override
      protected void configure() {
        setName(serviceName);
        for (HttpServiceHandler handler : handlers) {
          addHandler(handler);
View Full Code Here

TOP

Related Classes of co.cask.cdap.api.service.AbstractService

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.