Package org.jboss.as.server.suspend
Interface OperationListener
-
public interface OperationListenerListener that is invoked to notify on success or failure of the suspend operation.- Author:
- Stuart Douglas
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcancelled()Invoked when a suspend operation is cancelledvoidcomplete()Invoked when a suspend operation is completevoidsuspendStarted()Invoked when a suspend operation is started.voidtimeout()Invoked when a suspend operation times out.
-
-
-
Method Detail
-
suspendStarted
void suspendStarted()
Invoked when a suspend operation is started.
-
complete
void complete()
Invoked when a suspend operation is complete
-
cancelled
void cancelled()
Invoked when a suspend operation is cancelled
-
timeout
void timeout()
Invoked when a suspend operation times out.
-
-