All Downloads are FREE. Search and download functionalities are using the official Maven repository.

zipkin2.reporter.BytesEncoder Maven / Gradle / Ivy

The newest version!
/*
 * Copyright The OpenZipkin Authors
 * SPDX-License-Identifier: Apache-2.0
 */
package zipkin2.reporter;

/**
 * Utility for encoding one or more elements of a type into a byte array.
 *
 * @param  type of the object to encode
 * @since 3.0
 */
public interface BytesEncoder {
  Encoding encoding();

  int sizeInBytes(S input);

  /** Serializes an object into its binary form. */
  byte[] encode(S input);
}