Interface ResumeListener
-
- All Superinterfaces:
GloballyAttachableListener
- 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 ResumeListener extends GloballyAttachableListener
This listener listens to resumed sessions. Resuming a session, means no events were missed and all objects are still valid.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonResume(ResumeEvent event)This method is called every time a connection is resumed.
-
-
-
Method Detail
-
onResume
void onResume(ResumeEvent event)
This method is called every time a connection is resumed.- Parameters:
event- The event.
-
-