com.expedia.open.tracing.api.CallOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: api/traceReader.proto
package com.expedia.open.tracing.api;
public interface CallOrBuilder extends
// @@protoc_insertion_point(interface_extends:Call)
com.google.protobuf.MessageOrBuilder {
/**
*
* service node from which call was started
*
*
* optional .CallNode from = 1;
*/
boolean hasFrom();
/**
*
* service node from which call was started
*
*
* optional .CallNode from = 1;
*/
com.expedia.open.tracing.api.CallNode getFrom();
/**
*
* service node from which call was started
*
*
* optional .CallNode from = 1;
*/
com.expedia.open.tracing.api.CallNodeOrBuilder getFromOrBuilder();
/**
*
* service node to which call was terminated
*
*
* optional .CallNode to = 2;
*/
boolean hasTo();
/**
*
* service node to which call was terminated
*
*
* optional .CallNode to = 2;
*/
com.expedia.open.tracing.api.CallNode getTo();
/**
*
* service node to which call was terminated
*
*
* optional .CallNode to = 2;
*/
com.expedia.open.tracing.api.CallNodeOrBuilder getToOrBuilder();
/**
*
* time delta in transit
*
*
* optional int64 networkDelta = 3;
*/
long getNetworkDelta();
}