use of com.linkedin.kafka.cruisecontrol.servlet.handler.async.runnable.GetStateRunnable in project cruise-control by linkedin.
the class CruiseControlStateRequest method handle.
@Override
protected OperationFuture handle(String uuid) {
OperationFuture future = new OperationFuture("Get state");
pending(future.operationProgress());
_asyncKafkaCruiseControl.sessionExecutor().submit(new GetStateRunnable(_asyncKafkaCruiseControl, future, _parameters));
return future;
}
Aggregations