java.io.deephaven.proto.backplane.grpc.FetchFileRequestOrBuilder 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 FetchFileRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:io.deephaven.proto.backplane.grpc.FetchFileRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* The path to the file to read
*
*
* string path = 1;
* @return The path.
*/
java.lang.String getPath();
/**
*
* The path to the file to read
*
*
* string path = 1;
* @return The bytes for path.
*/
com.google.protobuf.ByteString
getPathBytes();
/**
*
* If present, tells the server to not send a result if the etag matches the current file's content.
*
*
* optional string etag = 2;
* @return Whether the etag field is set.
*/
boolean hasEtag();
/**
*
* If present, tells the server to not send a result if the etag matches the current file's content.
*
*
* optional string etag = 2;
* @return The etag.
*/
java.lang.String getEtag();
/**
*
* If present, tells the server to not send a result if the etag matches the current file's content.
*
*
* optional string etag = 2;
* @return The bytes for etag.
*/
com.google.protobuf.ByteString
getEtagBytes();
}