1
2
3
4
5
6
7
8
9
10
11
12 package ca.spaz.cron.datasource.sql;
13
14 /***
15 * Interface to be implemented by classes wishing to be notified of
16 * events pertaining to database connections. Specifically, when a
17 * connection is made.
18 *
19 * @author Chris Rose
20 */
21 public interface IConnectionStatusObserver {
22
23 /***
24 * This method will be called when a connection to the specified
25 * connectionID is made.
26 *
27 * @param conID the connection that was completed.
28 */
29 void connectionMade(String conID);
30
31 }