Package com.vuzix.ultralite.utils.scroll
Interface AutoScroller.AutoScrollEnded
- Enclosing class:
- AutoScroller
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Interface class to receive a notification when the AutoScroller worker thread completes.
- Since:
- 1.4.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onEnded
(boolean complete) Callback method invoked when the AutoScroller worker thread completes.
-
Method Details
-
onEnded
void onEnded(boolean complete) Callback method invoked when the AutoScroller worker thread completes.- Parameters:
complete
- True if the thread exited after the complete show finished. False if the thread exited on an error.
-