// ------------------------------------------------------------------------
// p r i v a t e
// ------------------------------------------------------------------------
private void initializeGC() {
if (null == _gc) {
_gc = new AsyncObjectsGC(this);
_gcThread = new Thread(_gc);
_gcThread.start();
}
}