Package org.apache.cloudstack.storage.command

Examples of org.apache.cloudstack.storage.command.DownloadProgressCommand


    if (getJobId() != null) {
      if (s_logger.isTraceEnabled()) {
        log("Sending progress command ", Level.TRACE);
      }
      try {
        DownloadProgressCommand dcmd = new DownloadProgressCommand(getCommand(), getJobId(), reqType);
        if (object.getType() == DataObjectType.VOLUME) {
          dcmd.setResourceType(ResourceType.VOLUME);
        }
                _ssAgent.sendMessageAsync(dcmd, new UploadListener.Callback(_ssAgent.getId(), this));
            } catch (Exception e) {
              s_logger.debug("Send command failed", e);
        setDisconnected();
View Full Code Here

TOP

Related Classes of org.apache.cloudstack.storage.command.DownloadProgressCommand

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.