01: /*
02: * Copyright 2004-2008 H2 Group. Licensed under the H2 License, Version 1.0
03: * (http://h2database.com/html/license.html).
04: * Initial Developer: H2 Group
05: */
06: package org.h2.server;
07:
08: /**
09: * A shutdown handler is a listener for shutdown events.
10: */
11: public interface ShutdownHandler {
12:
13: /**
14: * Tell the listener to shut down.
15: */
16: void shutdown();
17: }
|