Home
last modified time | relevance | path

Searched refs:executionInfo (Results 1 – 17 of 17) sorted by relevance

/expo/packages/expo-task-manager/src/
H A DTaskManager.ts33 executionInfo: TaskManagerTaskBodyExecutionInfo; property
241 async ({ data, error, executionInfo }) => {
242 const { eventId, taskName } = executionInfo;
249 result = await taskExecutor({ data, error, executionInfo });
/expo/packages/expo-task-manager/build/
H A DTaskManager.js133 eventEmitter.addListener(ExpoTaskManager.EVENT_NAME, async ({ data, error, executionInfo }) => {
134 const { eventId, taskName } = executionInfo;
140 result = await taskExecutor({ data, error, executionInfo });
H A DTaskManager.d.ts24 executionInfo: TaskManagerTaskBodyExecutionInfo; property
H A DTaskManager.js.map1executionInfo: TaskManagerTaskBodyExecutionInfo;\n}\n\n// @needsAudit\n/**\n * Additional details …
/expo/packages/expo-task-manager/android/src/main/java/expo/modules/taskManager/
H A DTaskService.java375 Bundle executionInfo = body.getBundle("executionInfo"); in executeTask() local
377 if (executionInfo == null) { in executeTask()
382 String eventId = executionInfo.getString("eventId"); in executeTask()
474 Bundle executionInfo = new Bundle(); in createExecutionEventBody() local
478 executionInfo.putString("eventId", eventId); in createExecutionEventBody()
479 executionInfo.putString("taskName", task.getName()); in createExecutionEventBody()
481 body.putBundle("executionInfo", executionInfo); in createExecutionEventBody()
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/taskManager/
H A DTaskService.java375 Bundle executionInfo = body.getBundle("executionInfo"); in executeTask() local
377 if (executionInfo == null) { in executeTask()
382 String eventId = executionInfo.getString("eventId"); in executeTask()
474 Bundle executionInfo = new Bundle(); in createExecutionEventBody() local
478 executionInfo.putString("eventId", eventId); in createExecutionEventBody()
479 executionInfo.putString("taskName", task.getName()); in createExecutionEventBody()
481 body.putBundle("executionInfo", executionInfo); in createExecutionEventBody()
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/taskManager/
H A DTaskService.java375 Bundle executionInfo = body.getBundle("executionInfo"); in executeTask() local
377 if (executionInfo == null) { in executeTask()
382 String eventId = executionInfo.getString("eventId"); in executeTask()
474 Bundle executionInfo = new Bundle(); in createExecutionEventBody() local
478 executionInfo.putString("eventId", eventId); in createExecutionEventBody()
479 executionInfo.putString("taskName", task.getName()); in createExecutionEventBody()
481 body.putBundle("executionInfo", executionInfo); in createExecutionEventBody()
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/taskManager/
H A DTaskService.java375 Bundle executionInfo = body.getBundle("executionInfo"); in executeTask() local
377 if (executionInfo == null) { in executeTask()
382 String eventId = executionInfo.getString("eventId"); in executeTask()
474 Bundle executionInfo = new Bundle(); in createExecutionEventBody() local
478 executionInfo.putString("eventId", eventId); in createExecutionEventBody()
479 executionInfo.putString("taskName", task.getName()); in createExecutionEventBody()
481 body.putBundle("executionInfo", executionInfo); in createExecutionEventBody()
/expo/packages/expo-notifications/build/
H A DregisterTaskAsync.js.map1executionInfo`: JSON object of additional info related to the task, including the `taskName`.\n * …
/expo/packages/expo-task-manager/ios/EXTaskManager/
H A DEXTaskService.m276 NSDictionary *executionInfo = [self _executionInfoForTask:task];
278 @"executionInfo": executionInfo,
287 [appEvents addObject:executionInfo[@"eventId"]];
/expo/ios/versioned/sdk47/EXTaskManager/EXTaskManager/
H A DABI47_0_0EXTaskService.m276 NSDictionary *executionInfo = [self _executionInfoForTask:task];
278 @"executionInfo": executionInfo,
287 [appEvents addObject:executionInfo[@"eventId"]];
/expo/ios/versioned/sdk49/EXTaskManager/EXTaskManager/
H A DABI49_0_0EXTaskService.m276 NSDictionary *executionInfo = [self _executionInfoForTask:task];
278 @"executionInfo": executionInfo,
287 [appEvents addObject:executionInfo[@"eventId"]];
/expo/ios/versioned/sdk48/EXTaskManager/EXTaskManager/
H A DABI48_0_0EXTaskService.m276 NSDictionary *executionInfo = [self _executionInfoForTask:task];
278 @"executionInfo": executionInfo,
287 [appEvents addObject:executionInfo[@"eventId"]];
/expo/packages/expo-task-manager/
H A DCHANGELOG.md143 - Add TypeScript definition of `executionInfo.appState`. ([#11670](https://github.com/expo/expo/pul…
/expo/docs/pages/versions/v46.0.0/sdk/
H A Dnotifications.mdx748 - **executionInfo**: JSON object of additional info related to the task, including the `taskName`.
758 TaskManager.defineTask(BACKGROUND_NOTIFICATION_TASK, ({ data, error, executionInfo }) => {
/expo/docs/pages/versions/v47.0.0/sdk/
H A Dnotifications.mdx748 - **executionInfo**: JSON object of additional info related to the task, including the `taskName`.
758 TaskManager.defineTask(BACKGROUND_NOTIFICATION_TASK, ({ data, error, executionInfo }) => {
/expo/packages/expo-notifications/
H A DREADME.md762 - **executionInfo**: JSON object of additional info related to the task, including the `taskName`.
772 TaskManager.defineTask(BACKGROUND_NOTIFICATION_TASK, ({ data, error, executionInfo }) => {