
io.opentelemetry.javaagent.instrumentation.netty.v3_8.HttpRequestAndChannel Maven / Gradle / Ivy
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package io.opentelemetry.javaagent.instrumentation.netty.v3_8;
import com.google.auto.value.AutoValue;
import org.jboss.netty.channel.Channel;
import org.jboss.netty.handler.codec.http.HttpRequest;
@AutoValue
public abstract class HttpRequestAndChannel {
public static HttpRequestAndChannel create(HttpRequest request, Channel channel) {
return new AutoValue_HttpRequestAndChannel(request, channel);
}
public abstract HttpRequest request();
public abstract Channel channel();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy