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

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

Introduction

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

Usage

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

public interface MessageLog extends AttributeMap {
    long contentLength();

    long startTimeNanos();

    long endTimeNanos();

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

public interface MessageLogBuilder extends AttributeMap {
    void increaseContentLength(long deltaBytes);

    void contentLength(long contentLength);

    void end();

From source file com.linecorp.armeria.common.RequestContext.java

/**
 * Provides information about an invocation and related utilities. Every remote invocation, regardless of if
 * it's client side or server side, has its own {@link RequestContext} instance.
 */
public interface RequestContext extends AttributeMap {

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

/**
 * Default {@link AttributeMap} implementation which use simple synchronization per bucket to keep the memory overhead
 * as low as possible.
 * <p>
 * Note: This class has been forked from {@link io.netty.util.DefaultAttributeMap}.
 */