Destroy

 (Available in 01 TS COM - TS_COM_DelegateIDispatch)

Purpose

CALLBACK: It is adviced to use 'oObject:Axit()'

Syntax

// See the documentation for the 'Axit' method.
oSomeClass:Axit( ) 

Description

This is where the application releases all refered to dynamicly allocated resources ( ARRAY, OBJECT, STRING ), and where all staticaly allocated memory is freed.

Note: Do not execute the 'Destroy()' method directly, it is adviced to call the 'Axit()' method when destruction of the object is needed this method of destruction is optimized for speed and guaranties that the 'Destroy()' method is only called once.

Note: The designer of the class should be aware of the fact that the 'Destroy()' method can be called multiple times.

Example

METHOD Destroy( ) CLASS SomeClass
// Let it be known that we are destroying the object
   SELF:IsInDestroy:=TRUE 
// Do the destructive work
   ... 
// All work should be done before calling SUPER
   SUPER:Destroy( ) 
RETURN NIL

Source

METHOD Destroy( ) CLASS TS_DelegateIDispatch
   TSTrace Enter
   SELF:_ObjectStat1:=_OR( SELF:_ObjectStat1 ; ...
  ... , TS_OBJSTAT1_INDESTROY )
   IF !SELF:_DestroyInternalDone
      SELF:_DestroyInternalDone:=TRUE
      SELF:_DestroyInternalExec( )
   END
   SUPER:Destroy( )
   IF SELF:_MethodIDCashItems<>NULL_PTR
      IF LOGIC( _CAST, MemFree( SELF:_MethodIDCashItems ) )
         TSTrace Warning "LOGIC(_CAST,MemFree(SELF:_MethodIDCashItems))"
      END
      SELF:_MethodIDCashItems:=NULL_PTR
   END
   TSTrace Leave DESTROY
RETURN NIL