Examples of consumeLocationsBlocking()


Examples of org.hive2hive.core.processes.implementations.files.download.direct.DownloadTaskDirect.consumeLocationsBlocking()

  @Override
  protected void doExecute() throws InvalidProcessStateException, ProcessExecutionException {
    DownloadTaskDirect task = context.getTask();
    logger.debug("Getting the locations to download {} in a blocking manner.", task.getDestinationName());
    List<Locations> locations = task.consumeLocationsBlocking();
    logger.debug("Got the locations to download {}.", task.getDestinationName());

    if (task.isAborted()) {
      logger.warn("Not executing step because task is aborted");
      return;
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.