Skip to content

Commit 0594395

Browse files
authored
---
yaml --- r: 8133 b: refs/heads/tswast-patch-1 c: 60a796a h: refs/heads/master i: 8131: 5d9f89b
1 parent edc4d7b commit 0594395

3 files changed

Lines changed: 8 additions & 8 deletions

File tree

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,5 @@ refs/tags/v0.18.0: 9d193c4c4b9d1c6f21515dd8e50836b9194ec9bb
5757
refs/tags/v0.19.0: e67b56e4d8dad5f9a7b38c9b2107c23c828f2ed5
5858
refs/tags/v0.20.0: 839f7fb7156535146aa1cb2c5aadd8d375d854e8
5959
refs/tags/v0.20.1: 370471f437f1f4f68a11e068df5cd6bf39edb1fa
60-
refs/heads/tswast-patch-1: bbfb6db5a32d553d0e368d5f46d3f1185750a36e
60+
refs/heads/tswast-patch-1: 60a796a404390f04dc13f8d5dc06a0d83b0dfd95
6161
refs/heads/pubsub-streaming-pull: 19262b752ee874eb2ca3b950eb2aef44d5a5267b

branches/tswast-patch-1/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -948,7 +948,7 @@ Apache 2.0 - See [LICENSE] for more information.
948948
[stackdriver-logging-docs]: https://cloud.google.com/logging/docs
949949
[stackdriver-logging-activation]: https://console.cloud.google.com/start/api?id=logging
950950
951-
[pubsub-api]: https://googlecloudplatform.github.io/google-cloud-java/apidocs/index.html?com/google/cloud/pubsub/spi/v1/package-summary.html
951+
[pubsub-api]: https://googlecloudplatform.github.io/google-cloud-java/apidocs/index.html?com/google/cloud/pubsub/v1/package-summary.html
952952
[cloud-pubsub]: https://cloud.google.com/pubsub/
953953
[cloud-pubsub-docs]: https://cloud.google.com/pubsub/docs
954954

branches/tswast-patch-1/google-cloud-pubsub/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ With Pub/Sub you can create topics. A topic is a named resource to which message
9090
publishers. Add the following imports at the top of your file:
9191

9292
```java
93-
import com.google.cloud.pubsub.spi.v1.TopicAdminClient;
93+
import com.google.cloud.pubsub.v1.TopicAdminClient;
9494
import com.google.pubsub.v1.TopicName;
9595
```
9696
Then, to create the topic, use the following code:
@@ -107,7 +107,7 @@ With Pub/Sub you can publish messages to a topic. Add the following import at th
107107

108108
```java
109109
import com.google.api.gax.core.ApiFuture;
110-
import com.google.cloud.pubsub.spi.v1.Publisher;
110+
import com.google.cloud.pubsub.v1.Publisher;
111111
import com.google.protobuf.ByteString;
112112
import com.google.pubsub.v1.PubsubMessage;
113113
```
@@ -132,7 +132,7 @@ With Pub/Sub you can create subscriptions. A subscription represents the stream
132132
single, specific topic. Add the following imports at the top of your file:
133133

134134
```java
135-
import com.google.cloud.pubsub.spi.v1.SubscriptionAdminClient;
135+
import com.google.cloud.pubsub.v1.SubscriptionAdminClient;
136136
import com.google.pubsub.v1.PushConfig;
137137
import com.google.pubsub.v1.SubscriptionName;
138138
import com.google.pubsub.v1.TopicName;
@@ -153,9 +153,9 @@ With Pub/Sub you can pull messages from a subscription. Add the following import
153153
file:
154154

155155
```java
156-
import com.google.cloud.pubsub.spi.v1.AckReplyConsumer;
157-
import com.google.cloud.pubsub.spi.v1.MessageReceiver;
158-
import com.google.cloud.pubsub.spi.v1.Subscriber;
156+
import com.google.cloud.pubsub.v1.AckReplyConsumer;
157+
import com.google.cloud.pubsub.v1.MessageReceiver;
158+
import com.google.cloud.pubsub.v1.Subscriber;
159159
import com.google.common.util.concurrent.MoreExecutors;
160160
import com.google.pubsub.v1.PubsubMessage;
161161
import com.google.pubsub.v1.SubscriptionName;

0 commit comments

Comments
 (0)