java.io.deephaven.proto.backplane.grpc.FetchFileResponseOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of deephaven-proto-backplane-grpc Show documentation
Show all versions of deephaven-proto-backplane-grpc Show documentation
The Deephaven proto-backplane-grpc
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: deephaven/proto/storage.proto
// Protobuf Java Version: 3.25.3
package io.deephaven.proto.backplane.grpc;
public interface FetchFileResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.deephaven.proto.backplane.grpc.FetchFileResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
* Contains the contents of the file, unless the returned etag matches the requested etag.
*
*
* bytes contents = 1;
* @return The contents.
*/
com.google.protobuf.ByteString getContents();
/**
*
* Represents the current etag of the requested file. If an etag was in the request and this matches,
* contents should be ignored, and the existing client copy of the file is already correct. In all
* other cases, this etag can be used in future requests to see if the file's contents are different.
*
*
* optional string etag = 2;
* @return Whether the etag field is set.
*/
boolean hasEtag();
/**
*
* Represents the current etag of the requested file. If an etag was in the request and this matches,
* contents should be ignored, and the existing client copy of the file is already correct. In all
* other cases, this etag can be used in future requests to see if the file's contents are different.
*
*
* optional string etag = 2;
* @return The etag.
*/
java.lang.String getEtag();
/**
*
* Represents the current etag of the requested file. If an etag was in the request and this matches,
* contents should be ignored, and the existing client copy of the file is already correct. In all
* other cases, this etag can be used in future requests to see if the file's contents are different.
*
*
* optional string etag = 2;
* @return The bytes for etag.
*/
com.google.protobuf.ByteString
getEtagBytes();
}