Package net.md_5.bungee.api.event
Class ClientConnectEvent
- java.lang.Object
-
- net.md_5.bungee.api.plugin.Event
-
- net.md_5.bungee.api.event.ClientConnectEvent
-
- All Implemented Interfaces:
Cancellable
public class ClientConnectEvent extends Event implements Cancellable
Event called to represent an initial client connection.
Note: This event is called at an early stage of every connection, handling should be fast.
-
-
Constructor Summary
Constructors Constructor Description ClientConnectEvent(SocketAddress socketAddress, ListenerInfo listener)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected boolean
canEqual(Object other)
boolean
equals(Object o)
ListenerInfo
getListener()
Listener that accepted the connection.SocketAddress
getSocketAddress()
Remote address of connection.int
hashCode()
boolean
isCancelled()
Cancelled state.void
setCancelled(boolean cancelled)
Cancelled state.String
toString()
-
-
-
Constructor Detail
-
ClientConnectEvent
public ClientConnectEvent(SocketAddress socketAddress, ListenerInfo listener)
-
-
Method Detail
-
isCancelled
public boolean isCancelled()
Cancelled state.- Specified by:
isCancelled
in interfaceCancellable
- Returns:
- the cancelled state of this event
-
getSocketAddress
public SocketAddress getSocketAddress()
Remote address of connection.
-
getListener
public ListenerInfo getListener()
Listener that accepted the connection.
-
setCancelled
public void setCancelled(boolean cancelled)
Cancelled state.- Specified by:
setCancelled
in interfaceCancellable
- Parameters:
cancelled
- the state to set
-
canEqual
protected boolean canEqual(Object other)
-
-