6 lines
118 B
Java
6 lines
118 B
Java
|
package io.netty.util;
|
||
|
|
||
|
public interface AttributeMap {
|
||
|
<T> Attribute<T> attr(AttributeKey key, Class<T> type);
|
||
|
}
|