Interface ServerMemberJoinListener
-
- All Superinterfaces:
GloballyAttachableListener,ObjectAttachableListener,ServerAttachableListener,UserAttachableListener
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ServerMemberJoinListener extends ServerAttachableListener, UserAttachableListener, GloballyAttachableListener, ObjectAttachableListener
This listener listens to server member joins. Do not confuse it with theServerJoinListener: ServerMemberAddListener is for other users and ServerJoinListener is for yourself!
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonServerMemberJoin(ServerMemberJoinEvent event)This method is called every time a user joins a server.
-
-
-
Method Detail
-
onServerMemberJoin
void onServerMemberJoin(ServerMemberJoinEvent event)
This method is called every time a user joins a server.- Parameters:
event- The event.
-
-