| java.lang.Object org.picocontainer.monitors.ConsoleComponentMonitor
Method Summary | |
public void | instantiated(PicoContainer container, ComponentAdapter<T> componentAdapter, Constructor<T> constructor, Object instantiated, Object[] parameters, long duration) | public Constructor<T> | instantiating(PicoContainer container, ComponentAdapter<T> componentAdapter, Constructor<T> constructor) | public void | instantiationFailed(PicoContainer container, ComponentAdapter<T> componentAdapter, Constructor<T> constructor, Exception cause) | public void | invocationFailed(Member member, Object instance, Exception cause) | public void | invoked(PicoContainer container, ComponentAdapter> componentAdapter, Method method, Object instance, long duration) | public void | invoking(PicoContainer container, ComponentAdapter> componentAdapter, Member member, Object instance) | public void | lifecycleInvocationFailed(MutablePicoContainer container, ComponentAdapter> componentAdapter, Method method, Object instance, RuntimeException cause) | public Object | noComponentFound(MutablePicoContainer container, Object componentKey) |
ConsoleComponentMonitor | public ConsoleComponentMonitor()(Code) | | Constructs a console component monitor that sends output to System.out.
|
ConsoleComponentMonitor | public ConsoleComponentMonitor(OutputStream out)(Code) | | Constructs a console component monitor that sends output to the specified output stream.
Parameters: out - the designated output stream. Options include System.out, Socket streams, File streams,etc. |
ConsoleComponentMonitor | public ConsoleComponentMonitor(OutputStream out, ComponentMonitor delegate)(Code) | | Constructs a console component monitor chain that sends output to the specified output stream
and then sends all events to the delegate component monitor.
Parameters: out - the output stream of choice. Parameters: delegate - the next monitor in the component monitor chain to receive event information. |
|
|