com.azure.storage.blob.models.BlobQueryAsyncResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-storage-blob Show documentation
Show all versions of azure-storage-blob Show documentation
This module contains client library for Microsoft Azure Blob Storage.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.storage.blob.models;
import com.azure.core.http.HttpHeaders;
import com.azure.core.http.HttpRequest;
import com.azure.core.http.rest.ResponseBase;
import reactor.core.publisher.Flux;
import java.nio.ByteBuffer;
/**
* This class contains the response information returned from the server when querying a blob.
*/
public final class BlobQueryAsyncResponse extends ResponseBase> {
/**
* Constructs a {@link BlobQueryAsyncResponse}.
*
* @param request Request sent to the service.
* @param statusCode Response status code returned by the service.
* @param headers Raw headers returned in the response.
* @param value Stream of download data being returned by the service.
* @param deserializedHeaders Headers deserialized into an object.
*/
public BlobQueryAsyncResponse(HttpRequest request, int statusCode, HttpHeaders headers, Flux value,
BlobQueryHeaders deserializedHeaders) {
super(request, statusCode, headers, value, deserializedHeaders);
}
}