接口 | 说明 |
---|---|
AsyncMapping<IN,OUT> | |
Attribute<T> |
An attribute which allows to store a value reference.
|
AttributeMap |
Holds
Attribute s which can be accessed via AttributeKey . |
BooleanSupplier |
Represents a supplier of
boolean -valued results. |
ByteProcessor |
Provides a mechanism to iterate over a collection of bytes.
|
Constant<T extends Constant<T>> |
A singleton which is safe to compare via the
== operator. |
HashingStrategy<T> |
Abstraction for hash code generation and equality comparison.
|
IntSupplier |
Represents a supplier of
int -valued results. |
Mapping<IN,OUT> |
Maintains the mapping from the objects of one type to the objects of the other type.
|
Recycler.Handle<T> | |
ReferenceCounted |
A reference-counted object that requires explicit deallocation.
|
ResourceLeak | 已过时
please use
ResourceLeakTracker as it may lead to false-positives. |
ResourceLeakDetector.LeakListener | |
ResourceLeakHint |
A hint object that provides human-readable message for easier resource leak tracking.
|
ResourceLeakTracker<T> | |
Timeout | |
Timer |
Schedules
TimerTask s for one-time future execution in a background
thread. |
TimerTask |
A task which is executed after the delay specified with
Timer.newTimeout(TimerTask, long, TimeUnit) . |
UncheckedBooleanSupplier |
Represents a supplier of
boolean -valued results which doesn't throw any checked exceptions. |
类 | 说明 |
---|---|
AbstractConstant<T extends AbstractConstant<T>> |
Base implementation of
Constant . |
AbstractReferenceCounted |
Abstract base class for classes wants to implement
ReferenceCounted . |
AsciiString |
A string which has been encoded into a character encoding whose character always takes a single byte, similarly to
ASCII.
|
AsciiStringCaseConversionBenchmark | |
AttributeKey<T> |
Key which can be used to access
Attribute out of the AttributeMap . |
ByteProcessor.IndexNotOfProcessor |
A
ByteProcessor which finds the first appearance which is not of a specific byte. |
ByteProcessor.IndexOfProcessor |
A
ByteProcessor which finds the first appearance of a specific byte. |
CharsetUtil |
A utility class that provides various common operations and constants
related with
Charset and its relevant classes. |
ConstantPool<T extends Constant<T>> |
A pool of
Constant s. |
DefaultAttributeMap |
Default
AttributeMap implementation which not exibit any blocking behaviour on attribute lookup while using a
copy-on-write approach on the modify path. |
DefaultAttributeMapBenchmark | |
DefaultAttributeMapBenchmark.KeySequence | |
DomainMappingBuilder<V> | 已过时
Use
DomainWildcardMappingBuilder instead. |
DomainNameMapping<V> | 已过时 |
DomainNameMappingBuilder<V> | 已过时 |
DomainWildcardMappingBuilder<V> |
Builder that allows to build
Mapping s that support
DNS wildcard matching. |
GetIpV6ByNameBenchmark | |
HashedWheelTimer |
A
Timer optimized for approximated I/O timeout scheduling. |
NettyRuntime |
A utility class for wrapping calls to
Runtime . |
NetUtil |
A class that holds a number of network-related constants.
|
Recycler<T> |
Light-weight object pool based on a thread-local stack.
|
Recycler.EnhancedHandle<T> | |
ReferenceCountUtil |
Collection of method to handle objects that may implement
ReferenceCounted . |
ResourceLeakDetector<T> | |
ResourceLeakDetectorFactory |
This static factory should be used to load
ResourceLeakDetector s as needed |
ThreadDeathWatcher | 已过时
will be removed in the next major release
|
Version |
Retrieves the version information of available Netty artifacts.
|
枚举 | 说明 |
---|---|
ResourceLeakDetector.Level |
Represents the level of resource leak detection.
|
异常错误 | 说明 |
---|---|
IllegalReferenceCountException |
An
IllegalStateException which is raised when a user attempts to access a ReferenceCounted whose
reference count has been decreased to 0 (and consequently freed). |
ResourceLeakException | 已过时
This class will be removed in the future version.
|
错误 | 说明 |
---|---|
Signal |
A special
Error which is used to signal some state or request by throwing it. |
注释类型 | 说明 |
---|---|
SuppressForbidden |
Annotation to suppress forbidden-apis errors inside a whole class, a method, or a field.
|
io.netty.util
.