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

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


    }
  }

  public void cancelJobFromWeb(ExecuteKind kind, String id, String operator)
      throws Exception {
    WebResponse resp = new WorkerWebCancel().cancel(context, kind, id,
        operator).get();
    if (resp.getStatus() == Status.ERROR) {
      throw new ZeusException(resp.getErrorText());
    }
  }
View Full Code Here

TOP

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

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.