Package io.netty.handler.codec.http2
Class HpackDynamicTable
- java.lang.Object
-
- io.netty.handler.codec.http2.HpackDynamicTable
-
final class HpackDynamicTable extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private longcapacity(package private) inthead(package private) HpackHeaderField[]hpackHeaderFieldsprivate longsize(package private) inttail
-
Constructor Summary
Constructors Constructor Description HpackDynamicTable(long initialCapacity)Creates a new dynamic table with the specified initial capacity.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(HpackHeaderField header)Add the header field to the dynamic table.longcapacity()Return the maximum allowable size of the dynamic table.voidclear()Remove all entries from the dynamic table.HpackHeaderFieldgetEntry(int index)Return the header field at the given index.intlength()Return the number of header fields in the dynamic table.HpackHeaderFieldremove()Remove and return the oldest header field from the dynamic table.voidsetCapacity(long capacity)Set the maximum size of the dynamic table.longsize()Return the current size of the dynamic table.
-
-
-
Field Detail
-
hpackHeaderFields
HpackHeaderField[] hpackHeaderFields
-
head
int head
-
tail
int tail
-
size
private long size
-
capacity
private long capacity
-
-
Method Detail
-
length
public int length()
Return the number of header fields in the dynamic table.
-
size
public long size()
Return the current size of the dynamic table. This is the sum of the size of the entries.
-
capacity
public long capacity()
Return the maximum allowable size of the dynamic table.
-
getEntry
public HpackHeaderField getEntry(int index)
Return the header field at the given index. The first and newest entry is always at index 1, and the oldest entry is at the index length().
-
add
public void add(HpackHeaderField header)
Add the header field to the dynamic table. Entries are evicted from the dynamic table until the size of the table and the new header field is less than or equal to the table's capacity. If the size of the new entry is larger than the table's capacity, the dynamic table will be cleared.
-
remove
public HpackHeaderField remove()
Remove and return the oldest header field from the dynamic table.
-
clear
public void clear()
Remove all entries from the dynamic table.
-
setCapacity
public void setCapacity(long capacity)
Set the maximum size of the dynamic table. Entries are evicted from the dynamic table until the size of the table is less than or equal to the maximum size.
-
-