Packageweavejs.api.core
Interfacepublic interface IDisposableObject
Implementors CallbackCollection, LinkablePromise, LinkableVariable, LinkableWatcher, Scheduler, SessionStateLog, Weave, WeavePromise

This is an interface for an object that should be cleaned up when it is no longer needed. It is recommended not to extend IDisposableObject in an interface. Instead, make the implementation of that interface implement IDisposableObject.

See also

weave.api.disposeObject()


Public Methods
 MethodDefined By
  
dispose():void
This function will be called automatically when the object is no longer needed, and should not be called directly.
IDisposableObject
Method Detail
dispose()method
public function dispose():void

This function will be called automatically when the object is no longer needed, and should not be called directly. Use disposeObject() instead so parent-child relationships get cleaned up automatically.

See also

weave.api.disposeObject()