xhrg commented on issue #13500:
URL: https://github.com/apache/skywalking/issues/13500#issuecomment-3305198586

   jetty-client-9.4.42.v20210604
   
   in HttpReceiver.java 
   
   ```
   private ContentListeners(List<Response.ResponseListener> responseListeners)
           {
               listeners = new ArrayList<>(responseListeners.size());
               responseListeners.stream()
                   .filter(Response.DemandedContentListener.class::isInstance)
                   .map(Response.DemandedContentListener.class::cast)
                   .forEach(listeners::add);
           }
   ```
   
   This anonymous object must be an instance of 
Response.DemandedContentListener.class,
   "onContent" can only be called


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to