src/share/classes/com/sun/nio/sctp/ShutdownNotification.java

Print this page




  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 package com.sun.nio.sctp;
  26 
  27 /**
  28  * Notification emitted when a peers shutdowns an the association.
  29  *
  30  * <P> When a peer sends a <i>SHUTDOWN</i>, the SCTP stack delivers this
  31  * notification to inform the application that it should cease sending data.
  32  *
  33  * @since 1.7
  34  */

  35 public abstract class ShutdownNotification implements Notification {
  36     /**
  37      * Initializes a new instance of this class.
  38      */
  39     protected ShutdownNotification() {}
  40 
  41     /**
  42      * Returns the association that this notification is applicable to.
  43      *
  44      * @return  The association that received the shutdown
  45      */
  46     public abstract Association association();
  47 }


  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 package com.sun.nio.sctp;
  26 
  27 /**
  28  * Notification emitted when a peers shutdowns an the association.
  29  *
  30  * <P> When a peer sends a <i>SHUTDOWN</i>, the SCTP stack delivers this
  31  * notification to inform the application that it should cease sending data.
  32  *
  33  * @since 1.7
  34  */
  35 @jdk.Supported
  36 public abstract class ShutdownNotification implements Notification {
  37     /**
  38      * Initializes a new instance of this class.
  39      */
  40     protected ShutdownNotification() {}
  41 
  42     /**
  43      * Returns the association that this notification is applicable to.
  44      *
  45      * @return  The association that received the shutdown
  46      */
  47     public abstract Association association();
  48 }