Package zipkin2.codec
Interface BytesEncoder<T>
- Type Parameters:
T- type of the object to deserialize
- All Known Implementing Classes:
DependencyLinkBytesEncoder,SpanBytesEncoder
public interface BytesEncoder<T>
-
Method Summary
Modifier and Type Method Description byte[]encode(T input)Serializes an object into its binary form.byte[]encodeList(List<T> input)Serializes a list of objects into their binary form.Encodingencoding()intsizeInBytes(T input)
-
Method Details
-
encoding
Encoding encoding() -
sizeInBytes
-
encode
Serializes an object into its binary form. -
encodeList
Serializes a list of objects into their binary form.
-