public interface IlvServletRunnable
IlvServletRunnable
interface defines a fragment of servlet
code that is intended to be executed by a thread. This is similar to the
standard Java Runnable
interface, except that IlvServletRunnable
allows for the code fragment to throw a ServletException
or an
IOException
if an error is encountered.Modifier and Type | Method and Description |
---|---|
void |
run()
Executes the fragment of servlet code.
|
void run() throws IOException, jakarta.servlet.ServletException
IOException
- If an input or output error is encountered during
execution.
The servlet handles the GET
request.jakarta.servlet.ServletException
- If an error is encountered during the execution.© Copyright 2024 Rogue Wave Software, Inc., a Perforce company.. All Rights Reserved.