Class AsyncConnection (2.23.0-rc)

The *Connection object for AsyncClient.

This interface defines virtual methods for each of the user-facing overload sets in AsyncClient. This allows users to inject custom behavior (e.g., with a Google Mock object) when writing tests that use objects of type AsyncClient.

To create a concrete instance, see MakeAsyncConnection().

For mocking, see storage_mocks::MockAsyncConnection.

Functions

options() const

The options used to configure this connection, with any defaults applied.

Returns
TypeDescription
Options

InsertObject(InsertObjectParams)

Insert a new object.

Parameter
NameDescription
p InsertObjectParams
Returns
TypeDescription
future< StatusOr< storage::ObjectMetadata > >

ReadObject(ReadObjectParams)

Asynchronously create a stream to read object contents.

Parameter
NameDescription
p ReadObjectParams
Returns
TypeDescription
future< StatusOr< std::unique_ptr< AsyncReaderConnection > > >

ReadObjectRange(ReadObjectParams)

Read a range from an object returning all the contents.

Parameter
NameDescription
p ReadObjectParams
Returns
TypeDescription
future< StatusOr< ReadPayload > >

StartUnbufferedUpload(UploadParams)

Start (or resume) an upload configured for persistent sources.

Parameter
NameDescription
p UploadParams
Returns
TypeDescription
future< StatusOr< std::unique_ptr< storage_experimental::AsyncWriterConnection > > >

StartBufferedUpload(UploadParams)

Start (or resume) an upload configured for streaming sources.

Parameter
NameDescription
p UploadParams
Returns
TypeDescription
future< StatusOr< std::unique_ptr< storage_experimental::AsyncWriterConnection > > >

ComposeObject(ComposeObjectParams)

Create a new object by composing (concatenating) the contents of existing objects.

Parameter
NameDescription
p ComposeObjectParams
Returns
TypeDescription
future< StatusOr< storage::ObjectMetadata > >

DeleteObject(DeleteObjectParams)

Delete an object.

Parameter
NameDescription
p DeleteObjectParams
Returns
TypeDescription
future< Status >

RewriteObject(RewriteObjectParams)

Start an object rewrite.

Parameter
NameDescription
p RewriteObjectParams
Returns
TypeDescription
std::shared_ptr< AsyncRewriterConnection >