~ubuntu-branches/ubuntu/gutsy/libpgjava/gutsy

« back to all changes in this revision

Viewing changes to src/interfaces/jdbc/org/postgresql/PGNotification.java

  • Committer: Bazaar Package Importer
  • Author(s): Arnaud Vandyck
  • Date: 2005-04-21 14:25:11 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 warty)
  • Revision ID: james.westby@ubuntu.com-20050421142511-wibh5vc31fkrorx7
Tags: 7.4.7-3
Built with sources...

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*-------------------------------------------------------------------------
 
2
 *
 
3
 * PGNotification.java
 
4
 *    This interface defines public PostgreSQL extention for Notifications
 
5
 *
 
6
 * Copyright (c) 2003, PostgreSQL Global Development Group
 
7
 *
 
8
 * IDENTIFICATION
 
9
 *        $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Attic/PGNotification.java,v 1.3 2003/03/07 18:39:41 barry Exp $
 
10
 *
 
11
 *-------------------------------------------------------------------------
 
12
 */
 
13
package org.postgresql;
 
14
 
 
15
 
 
16
public interface PGNotification
 
17
{
 
18
        /**
 
19
         * Returns name of this notification
 
20
         * @since 7.3
 
21
         */
 
22
        public String getName();
 
23
 
 
24
        /**
 
25
         * Returns the process id of the backend process making this notification
 
26
         * @since 7.3
 
27
         */
 
28
        public int getPID();
 
29
 
 
30
}
 
31