Package akka.http.impl.engine.http2
Interface Http2StreamHandling.OutStream
-
- All Known Implementing Classes:
Http2StreamHandling.OutStreamImpl
- Enclosing interface:
- Http2StreamHandling
public static interface Http2StreamHandling.OutStream
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
cancelStream()
boolean
canSend()
scala.Option<FrameEvent>
endStreamIfPossible()
void
increaseWindow(int delta)
boolean
isDone()
FrameEvent.DataFrame
nextFrame(int maxBytesToSend)
-
-
-
Method Detail
-
canSend
boolean canSend()
-
cancelStream
void cancelStream()
-
endStreamIfPossible
scala.Option<FrameEvent> endStreamIfPossible()
-
nextFrame
FrameEvent.DataFrame nextFrame(int maxBytesToSend)
-
increaseWindow
void increaseWindow(int delta)
-
isDone
boolean isDone()
-
-