io.micrometer.tracing.brave.bridge.BraveHttpServerHandler Maven / Gradle / Ivy
/**
* Copyright 2022 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.micrometer.tracing.brave.bridge;
import io.micrometer.tracing.http.HttpServerRequest;
import io.micrometer.tracing.http.HttpServerResponse;
import io.micrometer.tracing.Span;
import io.micrometer.tracing.http.HttpServerHandler;
/**
* Brave implementation of a {@link HttpServerHandler}.
*
* @author Marcin Grzejszczak
* @since 1.0.0
* @deprecated scheduled for removal in 1.4.0
*/
@Deprecated
public class BraveHttpServerHandler implements HttpServerHandler {
final brave.http.HttpServerHandler delegate;
/**
* Creates a new instance of {@link HttpServerHandler}.
* @param delegate Brave version of {@link HttpServerHandler}
*/
public BraveHttpServerHandler(
brave.http.HttpServerHandler delegate) {
this.delegate = delegate;
DeprecatedClassLogger.logWarning(getClass());
}
@Override
public Span handleReceive(HttpServerRequest request) {
DeprecatedClassLogger.logWarning(getClass());
return BraveSpan.fromBrave(this.delegate.handleReceive(BraveHttpServerRequest.toBrave(request)));
}
@Override
public void handleSend(HttpServerResponse response, Span span) {
DeprecatedClassLogger.logWarning(getClass());
this.delegate.handleSend(BraveHttpServerResponse.toBrave(response), BraveSpan.toBrave(span));
}
}