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

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


   *
   * @param kind
   * @param id
   */
  public void executeJobFromWeb(ExecuteKind kind, String id) throws Exception {
    WebResponse resp = new WorkerWebExecute().send(context, kind, id).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.WorkerWebExecute

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.