All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazon.redshift.core.Notification Maven / Gradle / Ivy

There is a newer version: 2.1.0.30
Show newest version
/*
 * Copyright (c) 2003, PostgreSQL Global Development Group
 * See the LICENSE file in the project root for more information.
 */

package com.amazon.redshift.core;

import com.amazon.redshift.RedshiftNotification;

public class Notification implements RedshiftNotification {

  private final String name;
  private final String parameter;
  private final int pid;

  public Notification(String name, int pid) {
    this(name, pid, "");
  }

  public Notification(String name, int pid, String parameter) {
    this.name = name;
    this.pid = pid;
    this.parameter = parameter;
  }

  /*
   * Returns name of this notification
   */
  public String getName() {
    return name;
  }

  /*
   * Returns the process id of the backend process making this notification
   */
  public int getPID() {
    return pid;
  }

  public String getParameter() {
    return parameter;
  }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy