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 plugin);9 10 /**11 * Starts the shutdown procedure.12 */13 public abstract void shutdown(final int status);14 15 }