Package com.taobao.zeus.socket.worker.reqresp

Examples of com.taobao.zeus.socket.worker.reqresp.WorkerWebUpdate


      throw new ZeusException(resp.getErrorText());
    }
  }

  public void updateJobFromWeb(String jobId) throws Exception {
    WebResponse resp = new WorkerWebUpdate().execute(context, jobId).get();
    if (resp.getStatus() == Status.ERROR) {
      throw new Exception(resp.getErrorText());
    }
  }
View Full Code Here

TOP

Related Classes of com.taobao.zeus.socket.worker.reqresp.WorkerWebUpdate

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.