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
// AsyncTask is a JSObject so that we can store other JSObjects inside it, and once the AsyncTask has completed and is erased from the async task queues then the JSObjects it contains will be available to be garbage collected.
20
-
// Another approach we can take is to have two queues, one contains the JSObjects for GC and another for plain data
19
+
// AsyncTask is a JSObject so that we can store
20
+
// other JSObjects inside it, and once the
21
+
// AsyncTask has completed and is erased from
22
+
// the async task queues then the JSObjects it
23
+
// contains will be available to be garbage
24
+
// collected.
25
+
// Another approach we can take is to have two
26
+
// queues, one contains the JSObjects for GC
27
+
// and another for plain data
21
28
classAsyncTaskfinal : public builtins::BuiltinNoConstructor<AsyncTask> {
0 commit comments