Package org.apache.hc.core5.http2.hpack
Class FifoLinkedList
- java.lang.Object
-
- org.apache.hc.core5.http2.hpack.FifoLinkedList
-
final class FifoLinkedList extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) class
FifoLinkedList.InternalNode
-
Field Summary
Fields Modifier and Type Field Description private int
length
private FifoLinkedList.InternalNode
master
-
Constructor Summary
Constructors Constructor Description FifoLinkedList()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FifoLinkedList.InternalNode
addFirst(HPackHeader header)
void
clear()
Header
get(int index)
Header
getFirst()
int
getIndex(FifoLinkedList.InternalNode node)
Header
getLast()
FifoLinkedList.InternalNode
removeLast()
int
size()
-
-
-
Field Detail
-
master
private final FifoLinkedList.InternalNode master
-
length
private int length
-
-
Method Detail
-
get
public Header get(int index)
-
getIndex
public int getIndex(FifoLinkedList.InternalNode node)
-
getFirst
public Header getFirst()
-
getLast
public Header getLast()
-
size
public int size()
-
addFirst
public FifoLinkedList.InternalNode addFirst(HPackHeader header)
-
removeLast
public FifoLinkedList.InternalNode removeLast()
-
clear
public void clear()
-
-