KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > columba > api > shutdown > IShutdownManager


1 package org.columba.api.shutdown;
2
3 public interface IShutdownManager {
4
5     /**
6      * Registers a runnable plugin that should be executed on shutdown.
7      */

8     public abstract void register(Runnable JavaDoc plugin);
9
10     /**
11      * Starts the shutdown procedure.
12      */

13     public abstract void shutdown(final int status);
14
15 }
Popular Tags