@@ -91,7 +91,7 @@ public interface Publisher {
9191 * be delayed based on the publisher bundling options.
9292 *
9393 * <p>Depending on chosen flow control {@link #failOnFlowControlLimits option}, the returned
94- * future might immediately fail with a {@link CloudPubsubFlowControlException } or block the
94+ * future might immediately fail with a {@link FlowController.FlowControlException } or block the
9595 * current thread until there are more resources available to publish.
9696 *
9797 * @param message the message to publish.
@@ -122,12 +122,12 @@ public interface Publisher {
122122
123123 /**
124124 * Whether to block publish calls when reaching flow control limits (see {@link
125- * #getMaxOutstandingRequestBytes()} & {@link #getMaxOutstandingElementCount()}).
125+ * #getMaxOutstandingRequestBytes()} and {@link #getMaxOutstandingElementCount()}).
126126 *
127127 * <p>If set to false, a publish call will fail with either {@link
128- * RequestByteMaxOutstandingReachedException } or {@link
129- * ElementCountMaxOutstandingReachedException }, as appropriate, when flow control limits are
130- * reached.
128+ * FlowController.MaxOutstandingRequestBytesReachedException } or {@link
129+ * FlowController.MaxOutstandingElementCountReachedException }, as appropriate, when flow control
130+ * limits are reached.
131131 */
132132 boolean failOnFlowControlLimits ();
133133
@@ -247,8 +247,8 @@ public Builder setFlowControlSettings(FlowController.Settings flowControlSetting
247247
248248 /**
249249 * Whether to fail publish when reaching any of the flow control limits, with either a {@link
250- * RequestByteMaxOutstandingReachedException } or {@link
251- * ElementCountMaxOutstandingReachedException } as appropriate.
250+ * FlowController.MaxOutstandingRequestBytesReachedException } or {@link
251+ * FlowController.MaxOutstandingElementCountReachedException } as appropriate.
252252 *
253253 * <p>If set to false, then publish operations will block the current thread until the
254254 * outstanding requests go under the limits.
0 commit comments