io.envoyproxy.envoy.watchdog.v3.AbortActionConfigOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: envoy/watchdog/v3/abort_action.proto
package io.envoyproxy.envoy.watchdog.v3;
public interface AbortActionConfigOrBuilder extends
// @@protoc_insertion_point(interface_extends:envoy.watchdog.v3.AbortActionConfig)
com.google.protobuf.MessageOrBuilder {
/**
*
* How long to wait for the thread to respond to the thread kill function
* before killing the process from this action. This is a blocking action.
* By default this is 5 seconds.
*
*
* .google.protobuf.Duration wait_duration = 1;
* @return Whether the waitDuration field is set.
*/
boolean hasWaitDuration();
/**
*
* How long to wait for the thread to respond to the thread kill function
* before killing the process from this action. This is a blocking action.
* By default this is 5 seconds.
*
*
* .google.protobuf.Duration wait_duration = 1;
* @return The waitDuration.
*/
com.google.protobuf.Duration getWaitDuration();
/**
*
* How long to wait for the thread to respond to the thread kill function
* before killing the process from this action. This is a blocking action.
* By default this is 5 seconds.
*
*
* .google.protobuf.Duration wait_duration = 1;
*/
com.google.protobuf.DurationOrBuilder getWaitDurationOrBuilder();
}