Interface Http2FrameStreamVisitor
public interface Http2FrameStreamVisitor
A visitor that allows to iterate over a collection of
Http2FrameStreams.-
Method Summary
Modifier and TypeMethodDescriptionbooleanvisit(Http2FrameStream stream) This method is called once for each stream of the collection.
-
Method Details
-
visit
This method is called once for each stream of the collection.If an
Exceptionis thrown, the loop is stopped.- 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.
-