Examples of copyAsync()


Examples of org.apache.cloudstack.engine.subsystem.api.storage.DataMotionStrategy.copyAsync()

        if (strategy == null) {
            throw new CloudRuntimeException("Can't find strategy to move data. " + "Source: " + srcData.getType().name() + " '" + srcData.getUuid() + ", Destination: " +
                destData.getType().name() + " '" + destData.getUuid() + "'");
        }

        strategy.copyAsync(srcData, destData, destHost, callback);
    }

    @Override
    public void copyAsync(DataObject srcData, DataObject destData, AsyncCompletionCallback<CopyCommandResult> callback) {
        copyAsync(srcData, destData, null, callback);
View Full Code Here

Examples of org.apache.cloudstack.engine.subsystem.api.storage.DataMotionStrategy.copyAsync()

            throw new CloudRuntimeException("Can't find strategy to move data. " + "Source Host: " + srcHost.getName() + ", Destination Host: " + destHost.getName() +
                ", Volume UUIDs: " + StringUtils.join(volumeIds, ","));
        }

        strategy.copyAsync(volumeMap, vmTo, srcHost, destHost, callback);
    }
}
View Full Code Here

Examples of org.apache.cloudstack.engine.subsystem.api.storage.DataMotionStrategy.copyAsync()

            throw new CloudRuntimeException("Can't find strategy to move data. "+
                    "Source: "+srcData.getType().name()+" '"+srcData.getUuid()+
                    ", Destination: "+destData.getType().name()+" '"+destData.getUuid()+"'");
        }

        strategy.copyAsync(srcData, destData, callback);
    }

    @Override
    public void copyAsync(Map<VolumeInfo, DataStore> volumeMap, VirtualMachineTO vmTo, Host srcHost, Host destHost,
            AsyncCompletionCallback<CopyCommandResult> callback) {
View Full Code Here

Examples of org.apache.cloudstack.engine.subsystem.api.storage.DataMotionStrategy.copyAsync()

            throw new CloudRuntimeException("Can't find strategy to move data. "+
                    "Source Host: "+srcHost.getName()+", Destination Host: "+destHost.getName()+
                    ", Volume UUIDs: "+StringUtils.join(volumeIds, ","));
        }

        strategy.copyAsync(volumeMap, vmTo, srcHost, destHost, callback);
    }
}
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.