NAME

gc - perform a garbage collection (memory reclamation) cycle

SYNOPSIS

oadl::gc()

DESCRIPTION

Immediately performs a garbage collection (memory reclamation) cycle. Normally, garbage collection cycles are performed automatically; however, if there is some need to reclaim memory at a specific time, a gc() may be performed. The destroy() methods, if any, of objects which are not reachable will be called before gc() returns; however, the order in which the objects are destroyed is non-deterministic.

RETURN VALUE

None

ERRORS

None

EXAMPLE

    oadl::gc()

SEE ALSO

obj.destroy()