1 16 package org.apache.log4j.lf5; 17 18 import org.apache.log4j.lf5.viewer.LogBrokerMonitor; 19 20 28 29 31 public class AppenderFinalizer { 32 36 40 protected LogBrokerMonitor _defaultMonitor = null; 41 42 46 50 public AppenderFinalizer(LogBrokerMonitor defaultMonitor) { 51 _defaultMonitor = defaultMonitor; 52 } 53 57 61 64 protected void finalize() throws Throwable { 65 System.out.println("Disposing of the default LogBrokerMonitor instance"); 66 _defaultMonitor.dispose(); 67 } 68 69 73 77 } | Popular Tags |