From 01f3d37e2259ad5c03c6ad8986d69c6810606b6f Mon Sep 17 00:00:00 2001 From: Carlos O'Ryan Date: Thu, 13 Oct 2022 16:43:06 +0000 Subject: [PATCH] Fix missing parameters in Doxygen documentation --- google/cloud/pubsub/subscriber.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/google/cloud/pubsub/subscriber.h b/google/cloud/pubsub/subscriber.h index b8a575798f5f..c2de07a21055 100644 --- a/google/cloud/pubsub/subscriber.h +++ b/google/cloud/pubsub/subscriber.h @@ -114,6 +114,9 @@ class Subscriber { * @snippet samples.cc subscribe * * @param cb the callable invoked when messages are received. + * @param opts any option overrides to use in this call. These options take + * precedence over the options passed in the constructor, and over any + * options provided in the `PublisherConnection` initialization. * @return a future that is satisfied when the session will no longer receive * messages. For example, because there was an unrecoverable error trying * to receive data. Calling `.cancel()` in this object will (eventually) @@ -143,6 +146,9 @@ class Subscriber { * @snippet samples.cc exactly-once-subscribe * * @param cb the callable invoked when messages are received. + * @param opts any option overrides to use in this call. These options take + * precedence over the options passed in the constructor, and over any + * options provided in the `PublisherConnection` initialization. * @return a future that is satisfied when the session will no longer receive * messages. For example, because there was an unrecoverable error trying * to receive data. Calling `.cancel()` in this object will (eventually)