Interface FragmentResponse
public interface FragmentResponse
FragmentResponse is a placeholder for the results of an async include so they can be inserted later in the response
-
Method Summary
Modifier and TypeMethodDescriptionvoid
insertFragment
(jakarta.servlet.ServletRequest req, jakarta.servlet.ServletResponse resp) insertFragment marks the location a fragment's response contents are supposed to be inserted without blockingvoid
insertFragmentBlocking
(jakarta.servlet.ServletRequest req, jakarta.servlet.ServletResponse resp) insertFragmentBlocking waits for the include to complete and inserts the response content.
-
Method Details
-
insertFragment
void insertFragment(jakarta.servlet.ServletRequest req, jakarta.servlet.ServletResponse resp) throws jakarta.servlet.ServletException, IOException insertFragment marks the location a fragment's response contents are supposed to be inserted without blocking- Parameters:
req
- ServletRequestresp
- ServletResponse- Throws:
jakarta.servlet.ServletException
IOException
-
insertFragmentBlocking
void insertFragmentBlocking(jakarta.servlet.ServletRequest req, jakarta.servlet.ServletResponse resp) throws jakarta.servlet.ServletException, IOException insertFragmentBlocking waits for the include to complete and inserts the response content.- Parameters:
req
- ServletRequestresp
- ServletResponse- Throws:
jakarta.servlet.ServletException
IOException
-