diff options
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/PGNotification.java')
-rw-r--r-- | src/interfaces/jdbc/org/postgresql/PGNotification.java | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/PGNotification.java b/src/interfaces/jdbc/org/postgresql/PGNotification.java new file mode 100644 index 0000000000..0413e9b350 --- /dev/null +++ b/src/interfaces/jdbc/org/postgresql/PGNotification.java @@ -0,0 +1,20 @@ +package org.postgresql; + + +/* $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Attic/PGNotification.java,v 1.1 2002/09/02 03:07:36 barry Exp $ + * This interface defines PostgreSQL extention for Notifications + */ +public interface PGNotification +{ + /* + * Returns name of this notification + */ + public String getName(); + + /* + * Returns the process id of the backend process making this notification + */ + public int getPID(); + +} + |