Interface Http2FrameStreamVisitor

All Known Implementing Classes:
AbstractHttp2StreamChannel.UserEventStreamVisitor

public interface Http2FrameStreamVisitor
A visitor that allows to iterate over a collection of Http2FrameStreams.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    This method is called once for each stream of the collection.
  • Method Details

    • visit

      boolean visit(Http2FrameStream stream)
      This method is called once for each stream of the collection.

      If an Exception is thrown, the loop is stopped.

      Returns:
      • true if the visitor wants to continue the loop and handle the stream.
      • false if the visitor wants to stop handling the stream and abort the loop.