Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(regen): fix closing backtick in docs #109

Merged
merged 1 commit into from Mar 19, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -185,19 +185,43 @@ private BigQueryReadGrpc() {}

/** Creates a new async stub that supports all call types for the service */
public static BigQueryReadStub newStub(io.grpc.Channel channel) {
return new BigQueryReadStub(channel);
io.grpc.stub.AbstractStub.StubFactory<BigQueryReadStub> factory =
new io.grpc.stub.AbstractStub.StubFactory<BigQueryReadStub>() {
@java.lang.Override
public BigQueryReadStub newStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new BigQueryReadStub(channel, callOptions);
}
};
return BigQueryReadStub.newStub(factory, channel);
}

/**
* Creates a new blocking-style stub that supports unary and streaming output calls on the service
*/
public static BigQueryReadBlockingStub newBlockingStub(io.grpc.Channel channel) {
return new BigQueryReadBlockingStub(channel);
io.grpc.stub.AbstractStub.StubFactory<BigQueryReadBlockingStub> factory =
new io.grpc.stub.AbstractStub.StubFactory<BigQueryReadBlockingStub>() {
@java.lang.Override
public BigQueryReadBlockingStub newStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new BigQueryReadBlockingStub(channel, callOptions);
}
};
return BigQueryReadBlockingStub.newStub(factory, channel);
}

/** Creates a new ListenableFuture-style stub that supports unary calls on the service */
public static BigQueryReadFutureStub newFutureStub(io.grpc.Channel channel) {
return new BigQueryReadFutureStub(channel);
io.grpc.stub.AbstractStub.StubFactory<BigQueryReadFutureStub> factory =
new io.grpc.stub.AbstractStub.StubFactory<BigQueryReadFutureStub>() {
@java.lang.Override
public BigQueryReadFutureStub newStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new BigQueryReadFutureStub(channel, callOptions);
}
};
return BigQueryReadFutureStub.newStub(factory, channel);
}

/**
Expand Down Expand Up @@ -318,11 +342,8 @@ public final io.grpc.ServerServiceDefinition bindService() {
* The Read API can be used to read data from BigQuery.
* </pre>
*/
public static final class BigQueryReadStub extends io.grpc.stub.AbstractStub<BigQueryReadStub> {
private BigQueryReadStub(io.grpc.Channel channel) {
super(channel);
}

public static final class BigQueryReadStub
extends io.grpc.stub.AbstractAsyncStub<BigQueryReadStub> {
private BigQueryReadStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
Expand Down Expand Up @@ -421,11 +442,7 @@ public void splitReadStream(
* </pre>
*/
public static final class BigQueryReadBlockingStub
extends io.grpc.stub.AbstractStub<BigQueryReadBlockingStub> {
private BigQueryReadBlockingStub(io.grpc.Channel channel) {
super(channel);
}

extends io.grpc.stub.AbstractBlockingStub<BigQueryReadBlockingStub> {
private BigQueryReadBlockingStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
Expand Down Expand Up @@ -514,11 +531,7 @@ public com.google.cloud.bigquery.storage.v1.SplitReadStreamResponse splitReadStr
* </pre>
*/
public static final class BigQueryReadFutureStub
extends io.grpc.stub.AbstractStub<BigQueryReadFutureStub> {
private BigQueryReadFutureStub(io.grpc.Channel channel) {
super(channel);
}

extends io.grpc.stub.AbstractFutureStub<BigQueryReadFutureStub> {
private BigQueryReadFutureStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
Expand Down
Expand Up @@ -293,19 +293,43 @@ private BigQueryWriteGrpc() {}

/** Creates a new async stub that supports all call types for the service */
public static BigQueryWriteStub newStub(io.grpc.Channel channel) {
return new BigQueryWriteStub(channel);
io.grpc.stub.AbstractStub.StubFactory<BigQueryWriteStub> factory =
new io.grpc.stub.AbstractStub.StubFactory<BigQueryWriteStub>() {
@java.lang.Override
public BigQueryWriteStub newStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new BigQueryWriteStub(channel, callOptions);
}
};
return BigQueryWriteStub.newStub(factory, channel);
}

/**
* Creates a new blocking-style stub that supports unary and streaming output calls on the service
*/
public static BigQueryWriteBlockingStub newBlockingStub(io.grpc.Channel channel) {
return new BigQueryWriteBlockingStub(channel);
io.grpc.stub.AbstractStub.StubFactory<BigQueryWriteBlockingStub> factory =
new io.grpc.stub.AbstractStub.StubFactory<BigQueryWriteBlockingStub>() {
@java.lang.Override
public BigQueryWriteBlockingStub newStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new BigQueryWriteBlockingStub(channel, callOptions);
}
};
return BigQueryWriteBlockingStub.newStub(factory, channel);
}

/** Creates a new ListenableFuture-style stub that supports unary calls on the service */
public static BigQueryWriteFutureStub newFutureStub(io.grpc.Channel channel) {
return new BigQueryWriteFutureStub(channel);
io.grpc.stub.AbstractStub.StubFactory<BigQueryWriteFutureStub> factory =
new io.grpc.stub.AbstractStub.StubFactory<BigQueryWriteFutureStub>() {
@java.lang.Override
public BigQueryWriteFutureStub newStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new BigQueryWriteFutureStub(channel, callOptions);
}
};
return BigQueryWriteFutureStub.newStub(factory, channel);
}

/**
Expand Down Expand Up @@ -464,11 +488,8 @@ public final io.grpc.ServerServiceDefinition bindService() {
* The Write API can be used to write data to BigQuery.
* </pre>
*/
public static final class BigQueryWriteStub extends io.grpc.stub.AbstractStub<BigQueryWriteStub> {
private BigQueryWriteStub(io.grpc.Channel channel) {
super(channel);
}

public static final class BigQueryWriteStub
extends io.grpc.stub.AbstractAsyncStub<BigQueryWriteStub> {
private BigQueryWriteStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
Expand Down Expand Up @@ -595,11 +616,7 @@ public void batchCommitWriteStreams(
* </pre>
*/
public static final class BigQueryWriteBlockingStub
extends io.grpc.stub.AbstractStub<BigQueryWriteBlockingStub> {
private BigQueryWriteBlockingStub(io.grpc.Channel channel) {
super(channel);
}

extends io.grpc.stub.AbstractBlockingStub<BigQueryWriteBlockingStub> {
private BigQueryWriteBlockingStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
Expand Down Expand Up @@ -679,11 +696,7 @@ public com.google.cloud.bigquery.storage.v1alpha2.Stream.WriteStream getWriteStr
* </pre>
*/
public static final class BigQueryWriteFutureStub
extends io.grpc.stub.AbstractStub<BigQueryWriteFutureStub> {
private BigQueryWriteFutureStub(io.grpc.Channel channel) {
super(channel);
}

extends io.grpc.stub.AbstractFutureStub<BigQueryWriteFutureStub> {
private BigQueryWriteFutureStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
Expand Down
Expand Up @@ -292,19 +292,43 @@ private BigQueryStorageGrpc() {}

/** Creates a new async stub that supports all call types for the service */
public static BigQueryStorageStub newStub(io.grpc.Channel channel) {
return new BigQueryStorageStub(channel);
io.grpc.stub.AbstractStub.StubFactory<BigQueryStorageStub> factory =
new io.grpc.stub.AbstractStub.StubFactory<BigQueryStorageStub>() {
@java.lang.Override
public BigQueryStorageStub newStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new BigQueryStorageStub(channel, callOptions);
}
};
return BigQueryStorageStub.newStub(factory, channel);
}

/**
* Creates a new blocking-style stub that supports unary and streaming output calls on the service
*/
public static BigQueryStorageBlockingStub newBlockingStub(io.grpc.Channel channel) {
return new BigQueryStorageBlockingStub(channel);
io.grpc.stub.AbstractStub.StubFactory<BigQueryStorageBlockingStub> factory =
new io.grpc.stub.AbstractStub.StubFactory<BigQueryStorageBlockingStub>() {
@java.lang.Override
public BigQueryStorageBlockingStub newStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new BigQueryStorageBlockingStub(channel, callOptions);
}
};
return BigQueryStorageBlockingStub.newStub(factory, channel);
}

/** Creates a new ListenableFuture-style stub that supports unary calls on the service */
public static BigQueryStorageFutureStub newFutureStub(io.grpc.Channel channel) {
return new BigQueryStorageFutureStub(channel);
io.grpc.stub.AbstractStub.StubFactory<BigQueryStorageFutureStub> factory =
new io.grpc.stub.AbstractStub.StubFactory<BigQueryStorageFutureStub>() {
@java.lang.Override
public BigQueryStorageFutureStub newStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new BigQueryStorageFutureStub(channel, callOptions);
}
};
return BigQueryStorageFutureStub.newStub(factory, channel);
}

/**
Expand Down Expand Up @@ -482,11 +506,7 @@ public final io.grpc.ServerServiceDefinition bindService() {
* </pre>
*/
public static final class BigQueryStorageStub
extends io.grpc.stub.AbstractStub<BigQueryStorageStub> {
private BigQueryStorageStub(io.grpc.Channel channel) {
super(channel);
}

extends io.grpc.stub.AbstractAsyncStub<BigQueryStorageStub> {
private BigQueryStorageStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
Expand Down Expand Up @@ -632,11 +652,7 @@ public void splitReadStream(
* </pre>
*/
public static final class BigQueryStorageBlockingStub
extends io.grpc.stub.AbstractStub<BigQueryStorageBlockingStub> {
private BigQueryStorageBlockingStub(io.grpc.Channel channel) {
super(channel);
}

extends io.grpc.stub.AbstractBlockingStub<BigQueryStorageBlockingStub> {
private BigQueryStorageBlockingStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
Expand Down Expand Up @@ -762,11 +778,7 @@ public com.google.protobuf.Empty finalizeStream(
* </pre>
*/
public static final class BigQueryStorageFutureStub
extends io.grpc.stub.AbstractStub<BigQueryStorageFutureStub> {
private BigQueryStorageFutureStub(io.grpc.Channel channel) {
super(channel);
}

extends io.grpc.stub.AbstractFutureStub<BigQueryStorageFutureStub> {
private BigQueryStorageFutureStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
Expand Down
Expand Up @@ -185,19 +185,43 @@ private BigQueryReadGrpc() {}

/** Creates a new async stub that supports all call types for the service */
public static BigQueryReadStub newStub(io.grpc.Channel channel) {
return new BigQueryReadStub(channel);
io.grpc.stub.AbstractStub.StubFactory<BigQueryReadStub> factory =
new io.grpc.stub.AbstractStub.StubFactory<BigQueryReadStub>() {
@java.lang.Override
public BigQueryReadStub newStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new BigQueryReadStub(channel, callOptions);
}
};
return BigQueryReadStub.newStub(factory, channel);
}

/**
* Creates a new blocking-style stub that supports unary and streaming output calls on the service
*/
public static BigQueryReadBlockingStub newBlockingStub(io.grpc.Channel channel) {
return new BigQueryReadBlockingStub(channel);
io.grpc.stub.AbstractStub.StubFactory<BigQueryReadBlockingStub> factory =
new io.grpc.stub.AbstractStub.StubFactory<BigQueryReadBlockingStub>() {
@java.lang.Override
public BigQueryReadBlockingStub newStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new BigQueryReadBlockingStub(channel, callOptions);
}
};
return BigQueryReadBlockingStub.newStub(factory, channel);
}

/** Creates a new ListenableFuture-style stub that supports unary calls on the service */
public static BigQueryReadFutureStub newFutureStub(io.grpc.Channel channel) {
return new BigQueryReadFutureStub(channel);
io.grpc.stub.AbstractStub.StubFactory<BigQueryReadFutureStub> factory =
new io.grpc.stub.AbstractStub.StubFactory<BigQueryReadFutureStub>() {
@java.lang.Override
public BigQueryReadFutureStub newStub(
io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
return new BigQueryReadFutureStub(channel, callOptions);
}
};
return BigQueryReadFutureStub.newStub(factory, channel);
}

/**
Expand Down Expand Up @@ -319,11 +343,8 @@ public final io.grpc.ServerServiceDefinition bindService() {
* The Read API can be used to read data from BigQuery.
* </pre>
*/
public static final class BigQueryReadStub extends io.grpc.stub.AbstractStub<BigQueryReadStub> {
private BigQueryReadStub(io.grpc.Channel channel) {
super(channel);
}

public static final class BigQueryReadStub
extends io.grpc.stub.AbstractAsyncStub<BigQueryReadStub> {
private BigQueryReadStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
Expand Down Expand Up @@ -423,11 +444,7 @@ public void splitReadStream(
* </pre>
*/
public static final class BigQueryReadBlockingStub
extends io.grpc.stub.AbstractStub<BigQueryReadBlockingStub> {
private BigQueryReadBlockingStub(io.grpc.Channel channel) {
super(channel);
}

extends io.grpc.stub.AbstractBlockingStub<BigQueryReadBlockingStub> {
private BigQueryReadBlockingStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
Expand Down Expand Up @@ -516,11 +533,7 @@ public com.google.cloud.bigquery.storage.v1beta2.SplitReadStreamResponse splitRe
* </pre>
*/
public static final class BigQueryReadFutureStub
extends io.grpc.stub.AbstractStub<BigQueryReadFutureStub> {
private BigQueryReadFutureStub(io.grpc.Channel channel) {
super(channel);
}

extends io.grpc.stub.AbstractFutureStub<BigQueryReadFutureStub> {
private BigQueryReadFutureStub(io.grpc.Channel channel, io.grpc.CallOptions callOptions) {
super(channel, callOptions);
}
Expand Down