Java io.netty.util Attribute fields, constructors, methods, implement or subclass

Example usage for Java io.netty.util Attribute fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.netty.util Attribute.

The text is from its open source code.

Implementation

io.netty.util.Attribute has the following implementations.
Click this link to see all its implementation.

Method

booleancompareAndSet(T oldValue, T newValue)
Atomically sets the value to the given updated value if the current value == the expected value.
Tget()
Returns the current value, which may be null
TgetAndRemove()
Removes this attribute from the AttributeMap and returns the old value.
TgetAndSet(T value)
Atomically sets to the given value and returns the old value which may be null if non was set before.
AttributeKeykey()
Returns the key of this attribute.
voidremove()
Removes this attribute from the AttributeMap .
voidset(T value)
Sets the value
TsetIfAbsent(T value)
Atomically sets to the given value if this Attribute 's value is null .