All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.s3.transfer.package-info Maven / Gradle / Ivy

Go to download

The AWS SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

There is a newer version: 1.11.60
Show newest version
/*
 * Copyright 2010-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License").
 * You may not use this file except in compliance with the License.
 * A copy of the License is located at
 *
 *  http://aws.amazon.com/apache2.0
 *
 * or in the "license" file accompanying this file. This file is distributed
 * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 * express or implied. See the License for the specific language governing
 * permissions and limitations under the License.
 */

/**
 * Transfer management.
 * 

* This package provides the {@link com.amazonaws.services.s3.transfer.TransferManager} class, which * manages a queue of asynchronous transfers. Callers can create a TransferManager instance, sharing * that same instance throughout their application, queue new uploads for TransferManager to process, * and continue working while TransferManager tracks the asynchronous upload progress. *

* The main benefits of using TransferManager are: *

    *
  • Simplified API for working with, querying, and manipulating transfers. *
  • Consistent interface for submitting uploads that abstracts the single part and multipart upload logic. *
  • Increased throughput when multiple parts of an upload can be uploaded to Amazon S3 in parallel. *
*

* The AmazonS3TransferProgress sample included in the AWS SDK for Java demonstrates how to use * TransferManager and how to track progress for uploads. *

* Using TransferManager to upload data to Amazon S3 is easy: *

 * AWSCredentials myCredentials = new BasicAWSCredentials(...);
 * TransferManager tx = new TransferManager(myCredentials);
 * Upload myUpload = tx.upload(myBucket, myFile.getName(), myFile);
 *
 * // You can poll your transfer's status to check its progress
 * if (myUpload.isDone() == false) {
 *     System.out.println("Transfer: " + myUpload.getDescription());
 *     System.out.println("  - State: " + myUpload.getState());
 *     System.out.println("  - Progress: " + myUpload.getProgress().getBytesTransferred());
 * }
 *
 * // Transfers also allow you to set a ProgressListener to receive
 * // asynchronous notifications about your transfer's progress.
 * myUpload.addProgressListener(myProgressListener);
 *
 * // Or you can block the current thread and wait for your transfer to
 * // to complete.  If the transfer fails, this method will throw an
 * // AmazonClientException or AmazonServiceException detailing the reason.
 * myUpload.waitForCompletion();
 * 
* * @see com.amazonaws.services.s3.transfer.TransferManager */ package com.amazonaws.services.s3.transfer;




© 2015 - 2025 Weber Informatics LLC | Privacy Policy