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

grpc.cache_client._UpdateTtlRequestOrBuilder Maven / Gradle / Ivy

There is a newer version: 0.117.0
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: cacheclient.proto

package grpc.cache_client;

public interface _UpdateTtlRequestOrBuilder extends
    // @@protoc_insertion_point(interface_extends:cache_client._UpdateTtlRequest)
    com.google.protobuf.MessageOrBuilder {

  /**
   * bytes cache_key = 1;
   * @return The cacheKey.
   */
  com.google.protobuf.ByteString getCacheKey();

  /**
   * 
   * Sets the ttl to this value only if it is an increase compared to the existing ttl
   * 
* * uint64 increase_to_milliseconds = 2; * @return Whether the increaseToMilliseconds field is set. */ boolean hasIncreaseToMilliseconds(); /** *
   * Sets the ttl to this value only if it is an increase compared to the existing ttl
   * 
* * uint64 increase_to_milliseconds = 2; * @return The increaseToMilliseconds. */ long getIncreaseToMilliseconds(); /** *
   * Sets the ttl to this value only if it is a decrease compared to the existing ttl
   * 
* * uint64 decrease_to_milliseconds = 3; * @return Whether the decreaseToMilliseconds field is set. */ boolean hasDecreaseToMilliseconds(); /** *
   * Sets the ttl to this value only if it is a decrease compared to the existing ttl
   * 
* * uint64 decrease_to_milliseconds = 3; * @return The decreaseToMilliseconds. */ long getDecreaseToMilliseconds(); /** *
   * Sets the ttl to this value unconditionally
   * 
* * uint64 overwrite_to_milliseconds = 4; * @return Whether the overwriteToMilliseconds field is set. */ boolean hasOverwriteToMilliseconds(); /** *
   * Sets the ttl to this value unconditionally
   * 
* * uint64 overwrite_to_milliseconds = 4; * @return The overwriteToMilliseconds. */ long getOverwriteToMilliseconds(); grpc.cache_client._UpdateTtlRequest.UpdateTtlCase getUpdateTtlCase(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy