Destroy

 (Available in 01 TS COM - TS_COM_DateTimeFromVariant)

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_DateTimeFromVariant
   TSTrace Enter
   IF SELF:_SystemTime<>NULL_PTR
      IF LOGIC( _CAST, MemFree( SELF:_SystemTime ) )
         TSTrace Warning "LOGIC(_CAST,MemFree(SELF:_SystemTime))"
      END
      SELF:_SystemTime:=NULL_PTR
   END
   SUPER:Destroy( )
   TSTrace Leave
RETURN NIL