Module datarush.commons
Package com.pervasive.datarush.webapp
Interface WebApplicationServerListener
-
public interface WebApplicationServerListener
A listener to various server events.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
serverStarted(WebApplicationServerEvent e)
Invoked when a server is started.void
serverStopped(WebApplicationServerEvent e)
Invoked when a server is stopped.
-
-
-
Method Detail
-
serverStarted
void serverStarted(WebApplicationServerEvent e)
Invoked when a server is started.- Parameters:
e
- the event containing context information.
-
serverStopped
void serverStopped(WebApplicationServerEvent e)
Invoked when a server is stopped.- Parameters:
e
- the event containing context information.
-
-