You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use [ScheduleDeviceMethodAsync](/dotnet/api/microsoft.azure.devices.jobclient.scheduledevicemethodasync) to create a new device method to run a device method on one or multiple devices.
66
66
67
-
This example schedules a device method call job for a specific job Id.
67
+
This example schedules a device method call job for a specific job ID.
Use [ScheduleTwinUpdateAsync](/dotnet/api/microsoft.azure.devices.jobclient.scheduledevicemethodasync) to create a new device twin update job to run a device twin update on one or multiple devices.
89
89
90
-
This example schedules a device twin update job for a specific job Id.
90
+
This example schedules a device twin update job for a specific job ID.
Use [GetJobAsync](/dotnet/api/microsoft.azure.devices.jobclient.getjobasync?#microsoft-azure-devices-jobclient-getjobasync(system-string)) to monitor a job status.
117
117
118
-
This example checks the job status for a specific job Id periodically until the job has completed or failed.
118
+
This example checks the job status for a specific job ID periodically until the job is complete or failed.
119
119
120
120
```csharp
121
121
JobResponseresult;
@@ -129,7 +129,7 @@ do
129
129
130
130
### SDK schedule job examples
131
131
132
-
The Azure IoT SDK for .NET provides working samples of service apps that handles job scheduling tasks. For more information, see:
132
+
The Azure IoT SDK for .NET provides working samples of service apps that handle job scheduling tasks. For more information, see:
Copy file name to clipboardExpand all lines: includes/iot-hub-howto-schedule-broadcast-jobs-java.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,9 +71,9 @@ JobClient jobClient = new JobClient(iotHubConnectionString);
71
71
72
72
### Create a device method update job
73
73
74
-
Use [scheduleDeviceMethod](/java/api/com.microsoft.azure.sdk.iot.service.jobs.jobclient?#com-microsoft-azure-sdk-iot-service-jobs-jobclient-scheduledevicemethod(java-lang-string-java-lang-string-java-lang-string-java-lang-long-java-lang-long-java-lang-object-java-util-date-long)) to to run a device method on one or multiple devices.
74
+
Use [scheduleDeviceMethod](/java/api/com.microsoft.azure.sdk.iot.service.jobs.jobclient?#com-microsoft-azure-sdk-iot-service-jobs-jobclient-scheduledevicemethod(java-lang-string-java-lang-string-java-lang-string-java-lang-long-java-lang-long-java-lang-object-java-util-date-long)) to run a device method on one or multiple devices.
75
75
76
-
This example schedules a device method call job for a specific job Id.
76
+
This example schedules a device method call job for a specific job ID.
Use [create_scheduled_job](/python/api/azure-iot-hub/azure.iot.hub.iothubjobmanager?#azure-iot-hub-iothubjobmanager-create-scheduled-job) to create a new device method to run a device method on one or multiple devices.
68
68
69
-
This example schedules a device method call job for a specific job Id.
69
+
This example schedules a device method call job for a specific job ID.
Use [get_scheduled_job](/python/api/azure-iot-hub/azure.iot.hub.iothubjobmanager?#azure-iot-hub-iothubjobmanager-get-scheduled-job) to retrieves the details of a scheduled job on an IoT Hub.
111
+
Use [get_scheduled_job](/python/api/azure-iot-hub/azure.iot.hub.iothubjobmanager?#azure-iot-hub-iothubjobmanager-get-scheduled-job) to retrieve the details of a scheduled job on an IoT Hub.
112
112
113
113
For example:
114
114
@@ -123,7 +123,7 @@ while True:
123
123
124
124
### SDK schedule job examples
125
125
126
-
The Azure IoT SDK for Python provides working samples of service apps that handles job scheduling tasks. For more information, see:
126
+
The Azure IoT SDK for Python provides working samples of service apps that handle job scheduling tasks. For more information, see:
127
127
128
128
*[Invoke a device method](https://github.com/Azure/azure-iot-hub-python/blob/8c8f315e8b26c65c5517541a7838a20ef8ae668b/samples/iothub_job_manager_method_sample.py)
129
129
*[Update a device twin](https://github.com/Azure/azure-iot-hub-python/blob/8c8f315e8b26c65c5517541a7838a20ef8ae668b/samples/iothub_job_manager_twin_update_sample.py)
0 commit comments