Interface ServerMemberLeaveListener
-
- 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 ServerMemberLeaveListener extends ServerAttachableListener, UserAttachableListener, GloballyAttachableListener, ObjectAttachableListener
This listener listens to server member leaves. Do not confuse it with theServerLeaveListener
: ServerMemberRemoveListener is for other users and ServerLeaveListener is for yourself!
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onServerMemberLeave(ServerMemberLeaveEvent event)
This method is called every time a user leaves a server.
-
-
-
Method Detail
-
onServerMemberLeave
void onServerMemberLeave(ServerMemberLeaveEvent event)
This method is called every time a user leaves a server.- Parameters:
event
- the event.
-
-