Class PeerAddressChangeNotification

All Implemented Interfaces:
Notification
public abstract class PeerAddressChangeNotification
extends Object
implements Notification

Notification emitted when a destination address on a multi-homed peer encounters a change.

Since:
1.7

Nested Classes

Modifier and Type Class Description
static class  PeerAddressChangeNotification.AddressChangeEvent

Defines the type of address change event that occurred to the destination address on a multi-homed peer when it encounters a change of interface details.

Constructors

Modifier Constructor Description
protected PeerAddressChangeNotification()

Initializes a new instance of this class.

Methods

Modifier and Type Method Description
abstract SocketAddress address()

Returns the peer address.

abstract Association association()

Returns the association that this notification is applicable to.

abstract PeerAddressChangeNotification.AddressChangeEvent event()

Returns the type of change event.

Methods declared in class java.lang.Object

clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructors

PeerAddressChangeNotification

protected PeerAddressChangeNotification()

Initializes a new instance of this class.

Methods

address

public abstract SocketAddress address()

Returns the peer address.

Returns:
The peer address

association

public abstract Association association()

Returns the association that this notification is applicable to.

Specified by:
association in interface Notification
Returns:
The association whose peer address changed

event

public abstract PeerAddressChangeNotification.AddressChangeEvent event()

Returns the type of change event.

Returns:
The event

© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/11/docs/api/jdk.sctp/com/sun/nio/sctp/PeerAddressChangeNotification.html