Skip to content
Merged
Changes from all commits
Commits
File filter

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 @@ -48,7 +48,8 @@ abstract class AbstractResultSet<R> extends AbstractStructReader implements Resu
interface Listener {
/**
* Called when transaction metadata is seen. This method may be invoked at most once. If the
* method is invoked, it will precede {@link #onError(SpannerException)} or {@link #onDone()}.
* method is invoked, it will precede {@link #onError(SpannerException,boolean)} or {@link
* #onDone(boolean)}.
*/
void onTransactionMetadata(Transaction transaction, boolean shouldIncludeId)
throws SpannerException;
Expand Down Expand Up @@ -160,7 +161,7 @@ default boolean initiateStreaming(AsyncResultSet.StreamMessageListener streamMes
}

/** it requests the initial prefetch chunks from gRPC stream */
default void requestPrefetchChunks() {};
default void requestPrefetchChunks() {}
}

static double valueProtoToFloat64(com.google.protobuf.Value proto) {
Expand Down
Loading