microsoft / Chakra-Samples

Repository for Chakra JavaScript engine related samples.
MIT License
216 stars 84 forks source link

Callback when function object is garbage collected. #32

Closed SrinivasGourarum closed 8 years ago

SrinivasGourarum commented 8 years ago

Let us say I have a function object in JS. function myFunction(){} I am assuming that by assigning to null in javascript code, it could be made available for garbage collection. myFunction = null;

Is there a way to receive a callback notifying that a function object is being collected just like we have for external objects (JsCreateExternalObject)?

Yongqu commented 8 years ago

Please see JsSetObjectBeforeCollectCallback at https://msdn.microsoft.com/en-us/library/mt125488(v=vs.94).aspx

SrinivasGourarum commented 8 years ago

Thanks @Yongqu.