org.postgresql.PGNotification Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.postgresql Show documentation
Show all versions of org.postgresql Show documentation
This bundle simply wraps postgresql-${postgresql.version}.jar.
The newest version!
/*-------------------------------------------------------------------------
*
* Copyright (c) 2003-2011, PostgreSQL Global Development Group
*
* IDENTIFICATION
* $PostgreSQL: pgjdbc/org/postgresql/PGNotification.java,v 1.14 2011/08/02 13:40:12 davecramer Exp $
*
*-------------------------------------------------------------------------
*/
package org.postgresql;
/**
* This interface defines the public PostgreSQL extension for Notifications
*/
public interface PGNotification
{
/**
* Returns name of this notification
* @since 7.3
*/
public String getName();
/**
* Returns the process id of the backend process making this notification
* @since 7.3
*/
public int getPID();
/**
* Returns additional information from the notifying process.
* This feature has only been implemented in server versions 9.0
* and later, so previous versions will always return an empty String.
*
* @since 8.0
*/
public String getParameter();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy