Example usage for io.netty.util Attribute interface-usage

List of usage examples for io.netty.util Attribute interface-usage

Introduction

In this page you can find the example usage for io.netty.util Attribute interface-usage.

Usage

From source file com.linecorp.armeria.common.logging.NoopAttribute.java

final class NoopAttribute<T> implements Attribute<T> {

    private final AttributeKey<T> key;

    NoopAttribute(AttributeKey<T> key) {
        this.key = requireNonNull(key, "key");

From source file com.linecorp.armeria.internal.NoopAttribute.java

public final class NoopAttribute<T> implements Attribute<T> {

    private final AttributeKey<T> key;

    public NoopAttribute(AttributeKey<T> key) {
        this.key = requireNonNull(key, "key");