Interface PushBuilder
-
- All Known Implementing Classes:
Jetty9PushBuilder
,NoopPushBuilder
,Servlet4PushBuilder
,Tomcat85PushBuilder
,UndertowPushBuilder
public interface PushBuilder
Used to delegate the push call to the vendor specific push builder API
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
push(javax.servlet.http.HttpServletRequest httpServletRequest, PushItem... pushItems)
Pushes the given paths with the push builder received from the http servlet request
-
-
-
Method Detail
-
push
void push(javax.servlet.http.HttpServletRequest httpServletRequest, PushItem... pushItems)
Pushes the given paths with the push builder received from the http servlet request- Parameters:
httpServletRequest
- the http servlet request to get the push builder frompushItems
- the pushItems of the resources to be pushed
-
-