Package org.eclipse.jetty.http2.hpack
Class HpackContext.DynamicTable
- java.lang.Object
-
- org.eclipse.jetty.http2.hpack.HpackContext.DynamicTable
-
- Enclosing class:
- HpackContext
private class HpackContext.DynamicTable extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private HpackContext.Entry[]
_entries
private int
_growby
private int
_offset
private int
_size
-
Constructor Summary
Constructors Modifier Constructor Description private
DynamicTable(int initCapacity)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(HpackContext.Entry entry)
private void
evict()
private void
evictAll()
HpackContext.Entry
get(int index)
int
index(HpackContext.Entry entry)
int
size()
-
-
-
Field Detail
-
_entries
private HpackContext.Entry[] _entries
-
_growby
private final int _growby
-
_size
private int _size
-
_offset
private int _offset
-
-
Method Detail
-
add
public void add(HpackContext.Entry entry)
-
index
public int index(HpackContext.Entry entry)
-
get
public HpackContext.Entry get(int index)
-
size
public int size()
-
evict
private void evict()
-
evictAll
private void evictAll()
-
-