pgnotification.java
来自「PostgreSQL7.4.6 for Linux」· Java 代码 · 共 32 行
JAVA
32 行
/*------------------------------------------------------------------------- * * PGNotification.java * This interface defines public PostgreSQL extention for Notifications * * Copyright (c) 2003, PostgreSQL Global Development Group * * IDENTIFICATION * $Header: /cvsroot/pgsql/src/interfaces/jdbc/org/postgresql/Attic/PGNotification.java,v 1.3 2003/03/07 18:39:41 barry Exp $ * *------------------------------------------------------------------------- */package org.postgresql;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();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?