Interface OnTaskCompleted
- Last UpdatedJul 23, 2025
- 1 minute read
Package com.here.sdk.core.threading
-
- 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 OnTaskCompleted
The method will be called on the main thread when a task call has been completed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onTaskCompleted(TaskOutcome taskOutcome)
The method will be called on the main thread when a task call has been completed.
-
-
-
Method Detail
-
onTaskCompleted
void onTaskCompleted(@NonNull TaskOutcome taskOutcome)
The method will be called on the main thread when a task call has been completed.
- Parameters:
taskOutcome
-The task outcome
-
-