Uses of Interface
co.verisoft.fw.async.Observer
-
Packages that use Observer Package Description co.verisoft.fw.async -
-
Uses of Observer in co.verisoft.fw.async
Classes in co.verisoft.fw.async that implement Observer Modifier and Type Class Description class
AsyncTask
Defines an async set of operations to be executed during the test, in an async manner.
Important: tasks are executed in the same thread as the WebDriver main thread. It means that:
1.Methods in co.verisoft.fw.async with parameters of type Observer Modifier and Type Method Description void
AsyncListenerImp. register(Observer o)
void
Subject. register(Observer o)
Registers a new observer to be notified.void
AsyncListenerImp. unregister(Observer o)
void
Subject. unregister(Observer o)
Unregister an existing observer, and stop notifying the observer upon invocation of notifyObservers method
-