16 package org.openkilda.messaging.info.flow;
18 import com.fasterxml.jackson.annotation.JsonCreator;
19 import com.fasterxml.jackson.annotation.JsonInclude;
20 import com.fasterxml.jackson.annotation.JsonProperty;
21 import com.fasterxml.jackson.databind.annotation.JsonSerialize;
26 @JsonInclude(JsonInclude.Include.NON_NULL)
28 @JsonProperty(
"network_latency")
29 private long networkLatency;
31 @JsonProperty(
"sender_latency")
32 private long senderLatency;
34 @JsonProperty(
"recipient_latency")
35 private long recipientLatency;
39 @JsonProperty(
"network_latency")
long networkLatency,
40 @JsonProperty(
"sender_latency")
long senderLatency,
41 @JsonProperty(
"recipient_latency")
long recipientLatency) {
42 this.networkLatency = networkLatency;
43 this.senderLatency = senderLatency;
44 this.recipientLatency = recipientLatency;
VerificationMeasures( @JsonProperty("network_latency") long networkLatency, @JsonProperty("sender_latency") long senderLatency, @JsonProperty("recipient_latency") long recipientLatency)