Package org.apache.drill.exec.work

Examples of org.apache.drill.exec.work.FragmentRunner.cancel()


      // try remote fragment cancel.
      handler.cancel();
    }else{
      // then try local cancel.
      FragmentRunner runner = bee.getFragmentRunner(handle);
      if(runner != null) runner.cancel();
    }
   
    return Acks.OK;
  }
 
View Full Code Here


    return Acks.OK;
  }
 
  public Ack cancelFragment(FragmentHandle handle){
    FragmentRunner runner = bee.getFragmentRunner(handle);
    if(runner != null) runner.cancel();
    return Acks.OK;
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.