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

software.amazon.awssdk.transfer.s3.progress.TransferProgressSnapshot Maven / Gradle / Ivy

Go to download

The S3 Transfer Manager allows customers to easily and optimally transfer objects and directories to and from S3.

There is a newer version: 2.28.4
Show newest version
/*
 * Copyright 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.
 */

package software.amazon.awssdk.transfer.s3.progress;

import java.util.Optional;
import java.util.OptionalDouble;
import java.util.OptionalLong;
import software.amazon.awssdk.annotations.Immutable;
import software.amazon.awssdk.annotations.SdkPublicApi;
import software.amazon.awssdk.annotations.ThreadSafe;
import software.amazon.awssdk.core.SdkResponse;
import software.amazon.awssdk.services.s3.model.GetObjectResponse;
import software.amazon.awssdk.services.s3.model.PutObjectResponse;
import software.amazon.awssdk.transfer.s3.S3TransferManager;
import software.amazon.awssdk.transfer.s3.model.Download;
import software.amazon.awssdk.transfer.s3.model.FileUpload;
import software.amazon.awssdk.transfer.s3.model.TransferRequest;
import software.amazon.awssdk.transfer.s3.model.Upload;

/**
 * {@link TransferProgressSnapshot} is an immutable, point-in-time representation of the progress of a given transfer
 * initiated by {@link S3TransferManager}. {@link TransferProgressSnapshot} offers several helpful methods for checking the
 * progress of a transfer, like {@link #transferredBytes()} and {@link #ratioTransferred()}.
 * 

* {@link TransferProgressSnapshot}'s methods that return {@link Optional} are dependent upon the size of a transfer (i.e., the * {@code Content-Length}) being known. In the case of file-based {@link FileUpload}s, transfer sizes are known up front and * immediately available. In the case of {@link Download}s, the transfer size is not known until {@link S3TransferManager} * receives a {@link GetObjectResponse} from Amazon S3. *

* The recommended way to receive updates of the latest {@link TransferProgressSnapshot} is to implement the {@link * TransferListener} interface. See the {@link TransferListener} documentation for usage instructions. A {@link * TransferProgressSnapshot} can also be obtained from a {@link TransferProgress} returned as part of the result from a {@link * TransferRequest}. * * @see TransferProgress * @see TransferListener * @see S3TransferManager */ @Immutable @ThreadSafe @SdkPublicApi public interface TransferProgressSnapshot { /** * The total number of bytes that have been transferred so far. */ long transferredBytes(); /** * The total size of the transfer, in bytes, or {@link Optional#empty()} if unknown. *

* In the case of file-based {@link FileUpload}s, transfer sizes are known up front and immediately available. In the case of * {@link Download}s, the transfer size is not known until {@link S3TransferManager} receives a {@link GetObjectResponse} from * Amazon S3. */ OptionalLong totalBytes(); /** * The SDK response, or {@link Optional#empty()} if unknown. * *

* In the case of {@link Download}, the response is {@link GetObjectResponse}, and the response is known before * it starts streaming. In the case of {@link Upload}, the response is {@link PutObjectResponse}, and the response is not * known until streaming finishes. */ Optional sdkResponse(); /** * The ratio of the {@link #totalBytes()} that has been transferred so far, or {@link Optional#empty()} if unknown. * This method depends on the {@link #totalBytes()} being known in order to return non-empty. *

* Ratio is computed as {@link #transferredBytes()} {@code /} {@link #totalBytes()}, where a transfer that is * half-complete would return {@code 0.5}. * * @see #totalBytes() */ OptionalDouble ratioTransferred(); /** * The total number of bytes that are remaining to be transferred, or {@link Optional#empty()} if unknown. This method depends * on the {@link #totalBytes()} being known in order to return non-empty. * * @see #totalBytes() */ OptionalLong remainingBytes(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy