Package io.opencensus.trace
Class AutoValue_NetworkEvent
- java.lang.Object
-
- io.opencensus.trace.BaseMessageEvent
-
- io.opencensus.trace.NetworkEvent
-
- io.opencensus.trace.AutoValue_NetworkEvent
-
@Immutable @Deprecated @Generated("com.google.auto.value.processor.AutoValueProcessor") final class AutoValue_NetworkEvent extends NetworkEvent
Deprecated.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) static class
AutoValue_NetworkEvent.Builder
Deprecated.-
Nested classes/interfaces inherited from class io.opencensus.trace.NetworkEvent
NetworkEvent.Type
-
-
Field Summary
Fields Modifier and Type Field Description private long
compressedMessageSize
Deprecated.private Timestamp
kernelTimestamp
Deprecated.private long
messageId
Deprecated.private NetworkEvent.Type
type
Deprecated.private long
uncompressedMessageSize
Deprecated.
-
Constructor Summary
Constructors Modifier Constructor Description private
AutoValue_NetworkEvent(Timestamp kernelTimestamp, NetworkEvent.Type type, long messageId, long uncompressedMessageSize, long compressedMessageSize)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
Deprecated.long
getCompressedMessageSize()
Deprecated.Returns the compressed size in bytes of theNetworkEvent
.Timestamp
getKernelTimestamp()
Deprecated.Returns the kernel timestamp associated with theNetworkEvent
ornull
if not set.long
getMessageId()
Deprecated.Returns the message id argument that serves to uniquely identify each network message.NetworkEvent.Type
getType()
Deprecated.Returns the type of theNetworkEvent
.long
getUncompressedMessageSize()
Deprecated.Returns the uncompressed size in bytes of theNetworkEvent
.int
hashCode()
Deprecated.java.lang.String
toString()
Deprecated.-
Methods inherited from class io.opencensus.trace.NetworkEvent
builder, getMessageSize
-
-
-
-
Field Detail
-
kernelTimestamp
private final Timestamp kernelTimestamp
Deprecated.
-
type
private final NetworkEvent.Type type
Deprecated.
-
messageId
private final long messageId
Deprecated.
-
uncompressedMessageSize
private final long uncompressedMessageSize
Deprecated.
-
compressedMessageSize
private final long compressedMessageSize
Deprecated.
-
-
Constructor Detail
-
AutoValue_NetworkEvent
private AutoValue_NetworkEvent(@Nullable Timestamp kernelTimestamp, NetworkEvent.Type type, long messageId, long uncompressedMessageSize, long compressedMessageSize)
Deprecated.
-
-
Method Detail
-
getKernelTimestamp
@Nullable public Timestamp getKernelTimestamp()
Deprecated.Description copied from class:NetworkEvent
Returns the kernel timestamp associated with theNetworkEvent
ornull
if not set.- Specified by:
getKernelTimestamp
in classNetworkEvent
- Returns:
- the kernel timestamp associated with the
NetworkEvent
ornull
if not set.
-
getType
public NetworkEvent.Type getType()
Deprecated.Description copied from class:NetworkEvent
Returns the type of theNetworkEvent
.- Specified by:
getType
in classNetworkEvent
- Returns:
- the type of the
NetworkEvent
.
-
getMessageId
public long getMessageId()
Deprecated.Description copied from class:NetworkEvent
Returns the message id argument that serves to uniquely identify each network message.- Specified by:
getMessageId
in classNetworkEvent
- Returns:
- the message id of the
NetworkEvent
.
-
getUncompressedMessageSize
public long getUncompressedMessageSize()
Deprecated.Description copied from class:NetworkEvent
Returns the uncompressed size in bytes of theNetworkEvent
.- Specified by:
getUncompressedMessageSize
in classNetworkEvent
- Returns:
- the uncompressed size in bytes of the
NetworkEvent
.
-
getCompressedMessageSize
public long getCompressedMessageSize()
Deprecated.Description copied from class:NetworkEvent
Returns the compressed size in bytes of theNetworkEvent
.- Specified by:
getCompressedMessageSize
in classNetworkEvent
- Returns:
- the compressed size in bytes of the
NetworkEvent
.
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
Deprecated.- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
Deprecated.- Overrides:
hashCode
in classjava.lang.Object
-
-