{
// only want one monitor per lateral type
// Fires up the monitoring daemon.
if ( monitor == null )
{
monitor = new LateralCacheMonitor( instance );
// Should never be null
if ( monitor != null )
{
Thread t = new Thread( monitor );
t.setDaemon( true );