Package io.netty.handler.codec.quic
Class QuicPathEvent
- java.lang.Object
-
- io.netty.handler.codec.quic.QuicPathEvent
-
- All Implemented Interfaces:
QuicEvent
- Direct Known Subclasses:
QuicPathEvent.Closed,QuicPathEvent.FailedValidation,QuicPathEvent.New,QuicPathEvent.PeerMigrated,QuicPathEvent.ReusedSourceConnectionId,QuicPathEvent.Validated
public abstract class QuicPathEvent extends java.lang.Object implements QuicEvent
A network path specificQuicEvent.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classQuicPathEvent.Closedstatic classQuicPathEvent.FailedValidationstatic classQuicPathEvent.Newstatic classQuicPathEvent.PeerMigratedstatic classQuicPathEvent.ReusedSourceConnectionIdstatic classQuicPathEvent.Validated
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)inthashCode()java.net.InetSocketAddresslocal()The local address of the network path.java.net.InetSocketAddressremote()The remote address of the network path.java.lang.StringtoString()
-
-
-
Method Detail
-
local
public java.net.InetSocketAddress local()
The local address of the network path.- Returns:
- local
-
remote
public java.net.InetSocketAddress remote()
The remote address of the network path.- Returns:
- local
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-