io.envoyproxy.envoy.data.tap.v3.SocketStreamedTraceSegmentOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: envoy/data/tap/v3/transport.proto
package io.envoyproxy.envoy.data.tap.v3;
public interface SocketStreamedTraceSegmentOrBuilder extends
// @@protoc_insertion_point(interface_extends:envoy.data.tap.v3.SocketStreamedTraceSegment)
com.google.protobuf.MessageOrBuilder {
/**
*
* Trace ID unique to the originating Envoy only. Trace IDs can repeat and should not be used
* for long term stable uniqueness. Matches connection IDs used in Envoy logs.
*
*
* uint64 trace_id = 1;
* @return The traceId.
*/
long getTraceId();
/**
*
* Connection properties.
*
*
* .envoy.data.tap.v3.Connection connection = 2;
* @return Whether the connection field is set.
*/
boolean hasConnection();
/**
*
* Connection properties.
*
*
* .envoy.data.tap.v3.Connection connection = 2;
* @return The connection.
*/
io.envoyproxy.envoy.data.tap.v3.Connection getConnection();
/**
*
* Connection properties.
*
*
* .envoy.data.tap.v3.Connection connection = 2;
*/
io.envoyproxy.envoy.data.tap.v3.ConnectionOrBuilder getConnectionOrBuilder();
/**
*
* Socket event.
*
*
* .envoy.data.tap.v3.SocketEvent event = 3;
* @return Whether the event field is set.
*/
boolean hasEvent();
/**
*
* Socket event.
*
*
* .envoy.data.tap.v3.SocketEvent event = 3;
* @return The event.
*/
io.envoyproxy.envoy.data.tap.v3.SocketEvent getEvent();
/**
*
* Socket event.
*
*
* .envoy.data.tap.v3.SocketEvent event = 3;
*/
io.envoyproxy.envoy.data.tap.v3.SocketEventOrBuilder getEventOrBuilder();
public io.envoyproxy.envoy.data.tap.v3.SocketStreamedTraceSegment.MessagePieceCase getMessagePieceCase();
}