Skip to content

Commit 185d69c

Browse files
committed
reviewer feedback
1 parent 9ca36c6 commit 185d69c

File tree

2 files changed

+11
-13
lines changed

2 files changed

+11
-13
lines changed

articles/app-service/overview-webjobs.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
---
2-
title: "Azure WebJobs Overview"
2+
title: "App Service WebJobs Overview"
33
description: "An overview of Azure WebJobs, covering its types, supported platforms, file types, scheduling with NCRONTAB expressions, deployment options, and benefits for background processing within Azure App Service."
44
keywords: "Azure WebJobs, App Service, background processing, triggered jobs, continuous jobs, NCRONTAB, deployment, Azure, technical overview"
5-
ms.topic: conceptual
6-
ms.date: 2/22/2025
5+
ms.topic: overview
6+
ms.date: 5/1/2025
77
author: msangapu-msft
88
ms.author: msangapu
9-
ms.reviewer: cephalin;ggailey
9+
ms.reviewer: ggailey
1010
#Customer intent: As a web developer, I want to leverage background tasks to keep my application running smoothly.
1111
---
1212

13-
# Azure WebJobs Overview
13+
# App Service WebJobs overview
1414

1515
## Introduction
1616
Azure WebJobs is a built-in feature of Azure App Service that enables you to run background tasks, scripts, and programs alongside your web, API, or mobile applications without needing separate infrastructure. This integration simplifies the automation of routine or resource-intensive operations—such as data processing, file cleanups, or queue monitoring—by leveraging the same scalable, managed environment as your primary application.
1717

18-
## WebJob Types
18+
## WebJob types
1919
WebJobs come in two primary types:
2020
- **Triggered WebJobs:** Run on demand, on a schedule, or in response to specific events.
2121
- **Continuous WebJobs:** Operate perpetually, ensuring that critical background processes are always active.
2222

2323
For scheduled tasks, NCRONTAB expressions are used to define precise execution intervals, giving you fine-grained control over when the jobs run.
2424

25-
## Supported Platforms and File Types
25+
## Supported platforms and file types
2626
Azure WebJobs is fully supported on Windows code, Windows containers, Linux code, and Linux containers.
2727

2828
Supported file types include:
@@ -33,7 +33,7 @@ Supported file types include:
3333

3434
This versatility enables integration of WebJobs into a wide range of application architectures.
3535

36-
## Benefits and Deployment
36+
## Benefits and deployment
3737
By incorporating WebJobs into your App Service, you reduce operational overhead while gaining robust capabilities for background processing. Deployment options are flexible and include:
3838
- **Visual Studio Integration:** Seamlessly deploy WebJobs alongside your ASP.NET applications.
3939
- **Azure Portal and ZIP Deployment:** Easily upload and deploy your WebJob packages.

articles/app-service/tutorial-webjobs.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ public class HelloWorld {
273273
java -jar webjob-artifact-1.0.0.jar
274274
```
275275
276-
1. Next, we compile the Java project to produce the executable `.jar`. There are multiple ways to do this, but for this example, we’ll use Maven. Run the following commands from the `project/` directory:
276+
1. Next, we compile the Java project to produce the executable `.jar`. There are multiple ways to do this, but for this example, we’ll use Maven. Run the following commands from the `project/` directory:
277277
278278
```bash
279279
mvn install
@@ -282,7 +282,7 @@ public class HelloWorld {
282282
283283
The jar files will be located at `project/target/webjob-artifact-1.0.0.jar` after a successful build.
284284
285-
1. Move the jar file to the root of the git repo with `mv project/target/webjob-artifact-1.0.0.jar .` Next you package our application as a `.zip` file.
285+
1. Move the jar file to the root of the git repo with `mv project/target/webjob-artifact-1.0.0.jar .` Next you package our application as a `.zip` file.
286286
287287
```bash
288288
zip webjob.zip run.sh webjob-artifact-1.0.0.jar
@@ -398,8 +398,6 @@ To remove the WebJob, select the WebJob in the portal and select `Delete`.
398398
399399
:::image type="content" source="media/quickstart-webjobs/delete-webjobs.png" alt-text="Screenshot showing how you can delete a WebJob in the portal.":::
400400
401-
## <a name="NextSteps"></a> Next steps
402-
403-
## Next step
401+
## <a name="NextSteps"></a> Next step
404402
405403
[Explore more advanced WebJob scenarios, including triggers and deployment options](webjobs-create.md)

0 commit comments

Comments
 (0)