Interface NormalsTaskCallback
-
public interface NormalsTaskCallback
Callback interface forNormalsTask
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onNormalsFailed(AerisError error)
This method will be called when an normals request to the API has failed.void
onNormalsLoaded(List<NormalsResponse> responses)
This method will be called when a list of normals have been returned from the API.
-
-
-
Method Detail
-
onNormalsLoaded
void onNormalsLoaded(List<NormalsResponse> responses)
This method will be called when a list of normals have been returned from the API.- Parameters:
responses
- List of responses
-
onNormalsFailed
void onNormalsFailed(AerisError error)
This method will be called when an normals request to the API has failed.- Parameters:
error
- The aeris error regarding to the fail.
-
-