Package io.netty.handler.codec.http2
Class AbstractHttp2StreamChannel.UserEventStreamVisitor
- java.lang.Object
-
- io.netty.handler.codec.http2.AbstractHttp2StreamChannel.UserEventStreamVisitor
-
- All Implemented Interfaces:
Http2FrameStreamVisitor
- Enclosing class:
- AbstractHttp2StreamChannel
private static final class AbstractHttp2StreamChannel.UserEventStreamVisitor extends java.lang.Object implements Http2FrameStreamVisitor
Http2FrameStreamVisitorthat fires the user event for every active stream pipeline.
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Objectevent
-
Constructor Summary
Constructors Constructor Description UserEventStreamVisitor(java.lang.Object event)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanvisit(Http2FrameStream stream)This method is called once for each stream of the collection.
-
-
-
Method Detail
-
visit
public boolean visit(Http2FrameStream stream)
Description copied from interface:Http2FrameStreamVisitorThis method is called once for each stream of the collection.If an
Exceptionis thrown, the loop is stopped.- Specified by:
visitin interfaceHttp2FrameStreamVisitor- Returns:
trueif the visitor wants to continue the loop and handle the stream.falseif the visitor wants to stop handling the stream and abort the loop.
-
-