You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by zh...@apache.org on 2020/07/20 04:14:36 UTC

[shardingsphere-elasticjob] branch master updated: Translate docs/content/user-manual/elasticjob-cloud/usage/dev-guide to English (#1182)

This is an automated email from the ASF dual-hosted git repository.

zhangliang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shardingsphere-elasticjob.git


The following commit(s) were added to refs/heads/master by this push:
     new 17427c2  Translate docs/content/user-manual/elasticjob-cloud/usage/dev-guide to English (#1182)
17427c2 is described below

commit 17427c2e0cbdc7439d12e76fffca48be67679b75
Author: viviel <37...@users.noreply.github.com>
AuthorDate: Sun Jul 19 23:14:25 2020 -0500

    Translate docs/content/user-manual/elasticjob-cloud/usage/dev-guide to English (#1182)
---
 .../elasticjob-cloud/usage/dev-guide.en.md            | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

diff --git a/docs/content/user-manual/elasticjob-cloud/usage/dev-guide.en.md b/docs/content/user-manual/elasticjob-cloud/usage/dev-guide.en.md
index 9b0e0f3..e47c0d6 100755
--- a/docs/content/user-manual/elasticjob-cloud/usage/dev-guide.en.md
+++ b/docs/content/user-manual/elasticjob-cloud/usage/dev-guide.en.md
@@ -4,4 +4,21 @@ weight = 1
 chapter = true
 +++
 
-TODO
+## Job development
+
+ElasticJob-Lite and ElasticJob-Cloud provide a unified job interface, developers only need to develop business jobs once, and then they can deploy to different environments according to different configurations.
+
+For details of job development, please refer to [ElasticJob-Lite user manual](/en/user-manual/elasticjob-lite/usage/).
+
+## Job start
+
+You need to define the `main` method and call it `JobBootstrap.execute()`, for example:
+
+```java
+public class MyJobDemo {
+    
+    public static void main(final String[] args) {
+        JobBootstrap.execute(new MyJob());
+    }
+}
+```