| /expo/packages/expo-task-manager/src/ |
| H A D | TaskManager.ts | 33 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 D | TaskManager.js | 133 eventEmitter.addListener(ExpoTaskManager.EVENT_NAME, async ({ data, error, executionInfo }) => { 134 const { eventId, taskName } = executionInfo; 140 result = await taskExecutor({ data, error, executionInfo });
|
| H A D | TaskManager.d.ts | 24 executionInfo: TaskManagerTaskBodyExecutionInfo; property
|
| H A D | TaskManager.js.map | 1 …executionInfo: TaskManagerTaskBodyExecutionInfo;\n}\n\n// @needsAudit\n/**\n * Additional details …
|
| /expo/packages/expo-task-manager/android/src/main/java/expo/modules/taskManager/ |
| H A D | TaskService.java | 375 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 D | TaskService.java | 375 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 D | TaskService.java | 375 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 D | TaskService.java | 375 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 D | registerTaskAsync.js.map | 1 …executionInfo`: JSON object of additional info related to the task, including the `taskName`.\n * …
|
| /expo/packages/expo-task-manager/ios/EXTaskManager/ |
| H A D | EXTaskService.m | 276 NSDictionary *executionInfo = [self _executionInfoForTask:task]; 278 @"executionInfo": executionInfo, 287 [appEvents addObject:executionInfo[@"eventId"]];
|
| /expo/ios/versioned/sdk47/EXTaskManager/EXTaskManager/ |
| H A D | ABI47_0_0EXTaskService.m | 276 NSDictionary *executionInfo = [self _executionInfoForTask:task]; 278 @"executionInfo": executionInfo, 287 [appEvents addObject:executionInfo[@"eventId"]];
|
| /expo/ios/versioned/sdk49/EXTaskManager/EXTaskManager/ |
| H A D | ABI49_0_0EXTaskService.m | 276 NSDictionary *executionInfo = [self _executionInfoForTask:task]; 278 @"executionInfo": executionInfo, 287 [appEvents addObject:executionInfo[@"eventId"]];
|
| /expo/ios/versioned/sdk48/EXTaskManager/EXTaskManager/ |
| H A D | ABI48_0_0EXTaskService.m | 276 NSDictionary *executionInfo = [self _executionInfoForTask:task]; 278 @"executionInfo": executionInfo, 287 [appEvents addObject:executionInfo[@"eventId"]];
|
| /expo/packages/expo-task-manager/ |
| H A D | CHANGELOG.md | 143 - Add TypeScript definition of `executionInfo.appState`. ([#11670](https://github.com/expo/expo/pul…
|
| /expo/docs/pages/versions/v46.0.0/sdk/ |
| H A D | notifications.mdx | 748 - **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 D | notifications.mdx | 748 - **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 D | README.md | 762 - **executionInfo**: JSON object of additional info related to the task, including the `taskName`. 772 TaskManager.defineTask(BACKGROUND_NOTIFICATION_TASK, ({ data, error, executionInfo }) => {
|