You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As soon as the ZiplineManifest is ready, we inspect the metadata for URLs and download them. These downloads occur in parallel with code downloads.
When the rest of the code is ready we bind a ZiplineService that exposes these downloads to guest code.
Unfortunately the implementation of this is clumsy. We’re hooking into EventListener, using manifestReady() for 1 and ziplineCreated() for 2. This isn’t what EventListener is for!
I’d prefer a proper LoadAttempt class with support for a user-specified tag.
The text was updated successfully, but these errors were encountered:
In our use of Zipline we’re doing fancy things:
metadata
for URLs and download them. These downloads occur in parallel with code downloads.ZiplineService
that exposes these downloads to guest code.Unfortunately the implementation of this is clumsy. We’re hooking into
EventListener
, usingmanifestReady()
for 1 andziplineCreated()
for 2. This isn’t whatEventListener
is for!I’d prefer a proper
LoadAttempt
class with support for a user-specified tag.The text was updated successfully, but these errors were encountered: