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 booleancanEqual(Object other)booleanequals(Object o)ListenerInfogetListener()Listener that accepted the connection.SocketAddressgetSocketAddress()Remote address of connection.inthashCode()booleanisCancelled()Cancelled state.voidsetCancelled(boolean cancelled)Cancelled state.StringtoString()
-
-
-
Constructor Detail
-
ClientConnectEvent
public ClientConnectEvent(SocketAddress socketAddress, ListenerInfo listener)
-
-
Method Detail
-
isCancelled
public boolean isCancelled()
Cancelled state.- Specified by:
isCancelledin 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:
setCancelledin interfaceCancellable- Parameters:
cancelled- the state to set
-
canEqual
protected boolean canEqual(Object other)
-
-