io.openlineage.client.transports.NoopTransport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openlineage-java Show documentation
Show all versions of openlineage-java Show documentation
Java library for OpenLineage
/*
/* Copyright 2018-2023 contributors to the OpenLineage project
/* SPDX-License-Identifier: Apache-2.0
*/
package io.openlineage.client.transports;
import io.openlineage.client.OpenLineage;
import lombok.extern.slf4j.Slf4j;
@Slf4j
public class NoopTransport extends Transport {
public NoopTransport() {
super(Type.NOOP);
log.info("OpenLineage client is disabled");
}
@Override
public void emit(OpenLineage.RunEvent runEvent) {}
}