A handler for page refreshes. A refresh can be triggered by a response header or a meta tag. @author Mike Bowler @author Daniel Gredler @author Ronald Brill
| 25 | * @author Ronald Brill |
| 26 | */ |
| 27 | public interface RefreshHandler { |
| 28 | |
| 29 | /** |
| 30 | * Refreshes the specified page using the specified URL after the specified number |
| 31 | * of seconds. |
| 32 | * @param page the page that is going to be refreshed |
| 33 | * @param url the URL where the new page will be loaded |
| 34 | * @param seconds the number of seconds to wait before reloading the page |
| 35 | * @throws IOException if the refresh fails |
| 36 | */ |
| 37 | void handleRefresh(Page page, URL url, int seconds) throws IOException; |
| 38 | |
| 39 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…