All Downloads are FREE. Search and download functionalities are using the official Maven repository.

java.io.deephaven.proto.backplane.grpc.FetchFileResponseOrBuilder Maven / Gradle / Ivy

There is a newer version: 0.36.1
Show newest version
// 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(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy