Warning: session_start(): open(/var/lib/php/sessions/sess_0bqt7i51m615gg8fttcu13lkgc, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
sinterface IManagedObjectCollector {
// notify collector that there is an object in a location
public void noteObject(int start, int size);
// same plus callback after compaction
public void noteObject(int start, int size, IVF1 updateAddress);
// notify collector that there is a pointer in a location
public void notePointer(int addr);
public void noteRootPointer(int addr);
// notify collector that there is a pointer array in a location
public void notePointerArray(int start);
// notify collector that there is an int array in a location
public void noteIntArray(int start);
void noteString(int addr, IVF1 updateAddress);
//default void noteString(int addr) { noteString(addr, null); }
// call after collectAndCompact to get new location of objects
int getNewLocation(int addr);
}