1 package expo.modules.interfaces.taskManager;
2 
3 import java.util.Map;
4 
5 // Interface for receiving task execution callbacks.
6 public interface TaskExecutionCallback {
onFinished(Map<String, Object> response)7   void onFinished(Map<String, Object> response);
8 }
9