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 class
QuicPathEvent.Closed
static class
QuicPathEvent.FailedValidation
static class
QuicPathEvent.New
static class
QuicPathEvent.PeerMigrated
static class
QuicPathEvent.ReusedSourceConnectionId
static class
QuicPathEvent.Validated
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
int
hashCode()
java.net.InetSocketAddress
local()
The local address of the network path.java.net.InetSocketAddress
remote()
The remote address of the network path.java.lang.String
toString()
-
-
-
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:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-