Package com.jme3.bullet.animation
Interface CompletionListener<T>
- Type Parameters:
T- the type of data returned at completion
public interface CompletionListener<T>
Report the completion of an operation.
-
Method Summary
Modifier and TypeMethodDescriptionvoidonCompletion(T data) Callback invoked after the operation completes.
-
Method Details
-
onCompletion
Callback invoked after the operation completes.- Parameters:
data- the data returned at completion
-