public static interface UrlDriller.Listener
| Modifier and Type | Method and Description |
|---|---|
void |
onURLDrillerFail(java.lang.String url,
java.lang.Exception exception)
Called when the drilling process fails, it will interrupt the drilling process.
|
void |
onURLDrillerFinish(java.lang.String url)
Called whenever the drilling process finishes
|
void |
onURLDrillerRedirect(java.lang.String url)
Called when the drilling process detects a redirection
|
void |
onURLDrillerStart(java.lang.String url)
Called when the drilling process start
|
void onURLDrillerStart(java.lang.String url)
url - url where drilling process startedvoid onURLDrillerRedirect(java.lang.String url)
url - url where redirection is pointing tovoid onURLDrillerFinish(java.lang.String url)
url - url where the drilling process endsvoid onURLDrillerFail(java.lang.String url,
java.lang.Exception exception)
url - url where the drilling process stoppedexception - exception with extended message of the error.