Package org.libvirt.event
Interface IOErrorListener
-
- All Superinterfaces:
EventListener
public interface IOErrorListener extends EventListener
Interface for receiving domain I/O error events.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onIOError(Domain domain, java.lang.String srcPath, java.lang.String devAlias, IOErrorAction action)
This method gets called upon a domain I/O error event.
-
-
-
Method Detail
-
onIOError
void onIOError(Domain domain, java.lang.String srcPath, java.lang.String devAlias, IOErrorAction action)
This method gets called upon a domain I/O error event.- Parameters:
domain
- the domain which got an I/O errorsrcPath
- the src of the block device with errorsdevAlias
- the device alias of the block device with errorsaction
- the action that is to be taken due to the I/O error
-
-