0

我希望在我的应用程序中使用 s3 的 aws sdk cpp async api。但是我无法找到相同的文档。我已经通过https://github.com/awsdocs/aws-doc-sdk-examples/tree/master/cpp/example_code/s3但没有包含异步 api 的示例。

例如,我正在尝试使用 PutObjectAsync api。根据此处给出的 api 参考指南https://sdk.amazonaws.com/cpp/api/LATEST/class_aws_1_1_s3 ​​_1_1_s3​​_client.html#aee8d39c350c5bb66a8d1edcc18df2b78 您需要形成 PutObjectRequest、PutObjectResponseReceivedHandler 和 AsyncCallerContext。

这里没看懂PutObjectResponseReceivedHandler和AsyncCallerContext怎么组成。有人可以指导我完成它。

4

1 回答 1

2

GitHub 上的 AWS 代码示例目录现在包含一个 C++ 示例,该示例演示了如何将文件异步上传到 Amazon S3。

源代码可以在https://github.com/awsdocs/aws-doc-sdk-examples/blob/master/cpp/example_code/s3/put_object_async.cpp查看

于 2019-04-19T21:23:48.797 回答