Package akka.http.impl.engine.http2
Interface StreamPrioritizer
-
- All Known Implementing Classes:
StreamPrioritizer.First$
public interface StreamPrioritizer
INTERNAL APIThe interface for pluggable stream prioritizers
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
StreamPrioritizer.First$
A prioritizer that ignores priority information and just sends to the first stream
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
chooseSubstream(scala.collection.immutable.Set<java.lang.Object> streams)
Choose a substream from a set of substream ids that have data availablevoid
updatePriority(FrameEvent.PriorityFrame priorityFrame)
Update priority information for a substream
-
-
-
Method Detail
-
updatePriority
void updatePriority(FrameEvent.PriorityFrame priorityFrame)
Update priority information for a substream
-
chooseSubstream
int chooseSubstream(scala.collection.immutable.Set<java.lang.Object> streams)
Choose a substream from a set of substream ids that have data available
-
-