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

zipkin2.storage.SpanConsumer Maven / Gradle / Ivy

There is a newer version: 3.4.2
Show newest version
/*
 * Copyright The OpenZipkin Authors
 * SPDX-License-Identifier: Apache-2.0
 */
package zipkin2.storage;

import java.util.List;
import zipkin2.Call;
import zipkin2.Span;

// @FunctionalInterface
public interface SpanConsumer {
  Call accept(List spans);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy