Uses of Interface
org.htmlunit.javascript.background.JavaScriptJobManager
-
Packages that use JavaScriptJobManager Package Description org.htmlunit Framework classes (contains theWebClient
class which is the main entry point).org.htmlunit.javascript.background Classes relating to background JavaScript execution, which is usually triggered viasetTimeout()
orsetInterval()
. -
-
Uses of JavaScriptJobManager in org.htmlunit
Fields in org.htmlunit declared as JavaScriptJobManager Modifier and Type Field Description private JavaScriptJobManager
WebWindowImpl. jobManager_
Fields in org.htmlunit with type parameters of type JavaScriptJobManager Modifier and Type Field Description private java.util.List<java.lang.ref.WeakReference<JavaScriptJobManager>>
WebClient. jobManagers_
Methods in org.htmlunit that return JavaScriptJobManager Modifier and Type Method Description JavaScriptJobManager
WebWindow. getJobManager()
INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.
Returns the job manager for this window.JavaScriptJobManager
WebWindowImpl. getJobManager()
INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK.
Returns the job manager for this window.Methods in org.htmlunit with parameters of type JavaScriptJobManager Modifier and Type Method Description void
WebWindowImpl. setJobManager(JavaScriptJobManager jobManager)
INTERNAL API - SUBJECT TO CHANGE AT ANY TIME - USE AT YOUR OWN RISK. -
Uses of JavaScriptJobManager in org.htmlunit.javascript.background
Classes in org.htmlunit.javascript.background that implement JavaScriptJobManager Modifier and Type Class Description (package private) class
JavaScriptJobManagerImpl
Default implementation ofJavaScriptJobManager
.Fields in org.htmlunit.javascript.background with type parameters of type JavaScriptJobManager Modifier and Type Field Description private java.util.List<java.lang.ref.WeakReference<JavaScriptJobManager>>
DefaultJavaScriptExecutor. jobManagerList_
Methods in org.htmlunit.javascript.background that return JavaScriptJobManager Modifier and Type Method Description JavaScriptJobManager
BackgroundJavaScriptFactory. createJavaScriptJobManager(WebWindow webWindow)
Creates a new JavaScriptJobManager for the given window.protected JavaScriptJobManager
DefaultJavaScriptExecutor. getJobManagerWithEarliestJob()
Returns the JobExecutor corresponding to the earliest job.Methods in org.htmlunit.javascript.background with parameters of type JavaScriptJobManager Modifier and Type Method Description private void
DefaultJavaScriptExecutor. updateJobMangerList(JavaScriptJobManager newJobManager)
-