8000 Regenerate pubsub client by yoshi-automation · Pull Request #4643 · googleapis/google-cloud-java · GitHub
[go: up one dir, main page]

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import com.google.api.gax.rpc.UnaryCallable;
import com.google.cloud.pubsub.v1.stub.SubscriberStub;
import com.google.cloud.pubsub.v1.stub.SubscriberStubSettings;
import com.google.common.util.concurrent.MoreExecutors;
import com.google.iam.v1.GetIamPolicyRequest;
import com.google.iam.v1.Policy;
import com.google.iam.v1.SetIamPolicyRequest;
Expand Down Expand Up @@ -2256,7 +2257,8 @@ public static ApiFuture<ListSubscriptionsPagedResponse> createAsync(
public ListSubscriptionsPagedResponse apply(ListSubscriptionsPage input) {
return new ListSubscriptionsPagedResponse(input);
}
});
},
8000 MoreExecutors.directExecutor());
}

private ListSubscriptionsPagedResponse(ListSubscriptionsPage page) {
Expand Down Expand Up @@ -2340,7 +2342,8 @@ public static ApiFuture<ListSnapshotsPagedResponse> createAsync(
public ListSnapshotsPagedResponse apply(ListSnapshotsPage input) {
return new ListSnapshotsPagedResponse(input);
}
});
},
MoreExecutors.directExecutor());
}

private ListSnapshotsPagedResponse(ListSnapshotsPage page) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import com.google.cloud.pubsub.v1.stub.PublisherStubSettings;
import com.google.common.base.Function;
import com.google.common.collect.Iterables;
import com.google.common.util.concurrent.MoreExecutors;
import com.google.iam.v1.GetIamPolicyRequest;
import com.google.iam.v1.Policy;
import com.google.iam.v1.SetIamPolicyRequest;
Expand Down Expand Up @@ -1193,7 +1194,8 @@ public static ApiFuture<ListTopicsPagedResponse> createAsync(
public ListTopicsPagedResponse apply(ListTopicsPage input) {
return new ListTopicsPagedResponse(input);
}
});
},
MoreExecutors.directExecutor());
}

private ListTopicsPagedResponse(ListTopicsPage page) {
Expand Down Expand Up @@ -1272,7 +1274,8 @@ public static ApiFuture<ListTopicSubscriptionsPagedResponse> createAsync(
public ListTopicSubscriptionsPagedResponse apply(ListTopicSubscriptionsPage input) {
return new ListTopicSubscriptionsPagedResponse(input);
}
});
},
MoreExecutors.directExecutor());
}

private ListTopicSubscriptionsPagedResponse(ListTopicSubscriptionsPage page) {
Expand Down
10 changes: 5 additions & 5 deletions google-cloud-clients/google-cloud-pubsub/synth.metadata
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"updateTime": "2019-03-01T08:49:22.807745Z",
"updateTime": "2019-03-06T08:48:55.349052Z",
"sources": [
{
"generator": {
"name": "artman",
"version": "0.16.14",
"dockerImage": "googleapis/artman@sha256:f3d61ae45abaeefb6be5f228cda22732c2f1b00fb687c79c4bd4f2c42bb1e1a7"
"version": "0.16.15",
"dockerImage": "googleapis/artman@sha256:9caadfa59d48224cba5f3217eb9d61a155b78ccf31e628abef385bc5b7ed3bd2"
}
},
{
"git": {
"name": "googleapis",
"remote": "https://github.com/googleapis/googleapis.git",
"sha": "41d72d444fbe445f4da89e13be02078734fb7875",
"internalRef": "236230004"
"sha": "856117505ff9075b3e9c0b5674113667b6cf9e00",
"internalRef": "236931378"
}
}
],
Expand Down
0