Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
coryan committed Nov 8, 2022
1 parent e3341cb commit 40f3ae5
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions google/cloud/pubsub/options.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,20 @@ namespace cloud {
namespace pubsub {
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_BEGIN

/// The retry policy
/// @ingroup pubsub-options
/**
* The retry policy
*
* @ingroup pubsub-options
*/
struct RetryPolicyOption {
using Type = std::shared_ptr<pubsub::RetryPolicy>;
};

/// The backoff policy
/// @ingroup pubsub-options
/**
* The backoff policy
*
* @ingroup pubsub-options
*/
struct BackoffPolicyOption {
using Type = std::shared_ptr<pubsub::BackoffPolicy>;
};
Expand Down Expand Up @@ -192,6 +198,8 @@ struct FullPublisherActionOption {
*
* If set, the client library turns on gRPC compression for batches larger (in
* bytes) than the give threshold.
*
* @ingroup pubsub-options
*/
struct CompressionThresholdOption {
using Type = std::size_t;
Expand Down

0 comments on commit 40f3ae5

Please sign in to comment.