You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: branches/tswast-patch-1/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/spi/v1/MessageDispatcher.java
+25-4Lines changed: 25 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -61,6 +61,7 @@ class MessageDispatcher {
61
61
privatefinalApiClockclock;
62
62
63
63
privatefinalDurationackExpirationPadding;
64
+
privatefinalDurationmaxAckExtensionPeriod;
64
65
privatefinalMessageReceiverreceiver;
65
66
privatefinalAckProcessorackProcessor;
66
67
@@ -87,20 +88,27 @@ class MessageDispatcher {
87
88
// it is not modified while inside the queue.
88
89
// The hashcode and equals methods are explicitly not implemented to discourage
89
90
// the use of this class as keys in maps or similar containers.
Copy file name to clipboardExpand all lines: branches/tswast-patch-1/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/spi/v1/PollingSubscriberConnection.java
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -67,6 +67,7 @@ public PollingSubscriberConnection(
67
67
Credentialscredentials,
68
68
MessageReceiverreceiver,
69
69
DurationackExpirationPadding,
70
+
DurationmaxAckExtensionPeriod,
70
71
DistributionackLatencyDistribution,
71
72
Channelchannel,
72
73
FlowControllerflowController,
@@ -82,6 +83,7 @@ public PollingSubscriberConnection(
Copy file name to clipboardExpand all lines: branches/tswast-patch-1/google-cloud-pubsub/src/main/java/com/google/cloud/pubsub/spi/v1/StreamingSubscriberConnection.java
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -70,6 +70,7 @@ public StreamingSubscriberConnection(
70
70
Credentialscredentials,
71
71
MessageReceiverreceiver,
72
72
DurationackExpirationPadding,
73
+
DurationmaxAckExtensionPeriod,
73
74
intstreamAckDeadlineSeconds,
74
75
DistributionackLatencyDistribution,
75
76
Channelchannel,
@@ -85,6 +86,7 @@ public StreamingSubscriberConnection(
Copy file name to clipboardExpand all lines: branches/tswast-patch-1/google-cloud-pubsub/src/test/java/com/google/cloud/pubsub/spi/v1/FakeScheduledExecutorService.java
0 commit comments