EventListener
Types
Functions
Invoked when something calls Zipline.bind, or a service is sent via an API.
Invoked when a code load fails.
Invoked when a code load is skipped because the code hasn't changed.
Invoked when a code load is skipped because the cached code isn't up-to-date.
Invoked for each attempt at loading code. This will be followed by a codeLoadSuccess, codeLoadFailed, or codeLoadSkipped if the code is unchanged.
Invoked when code is successfully downloaded and initialized.
Invoked when code is unloaded because it is no longer needed. Typically this occurs when a hot code update is applied.
Invoked when a network download fails.
Invoked when a network download starts. This will be followed by downloadSuccess or downloadFailed.
Invoked when a network download completes successfully.
Invoked after the host-side initializer completes.
Invoked before Zipline runs the host-side initializer for an application.
Invoked after Zipline runs the downloaded code's main function.
Invoked before Zipline runs the downloaded code's main function.
Invoked when the manifest couldn't be decoded as JSON. For example, this might occur if there's a captive portal on the network.
Invoked when the loader has successfully fetched a manifest, verified it (if necessary), and will proceed to download and load each of its modules.
Invoked when a the manifest verifier successfully verifies a key. Manifest verification failures are signaled with codeLoadFailed.
Invoked when a module load completes.
Invoked when a module load starts. This is the process of loading code into QuickJS.
Invoked when a service is garbage collected without being closed.
Invoked when something calls Zipline.take, or a service is received via an API.
Invoked when app has thrown an uncaught exception.
Invoked when an event is received on a widget that no longer exists.
Invoked on a request to create an unknown modifier with tag. This is a schema mismatch and the modifier is ignored.
Invoked on a request to create an unknown widget with tag. This is a schema mismatch and the widget is ignored.
Invoked when a Zipline is created, after codeLoadStart and before any application code is loaded.