Selaa lähdekoodia

update document

xuxueli 6 vuotta sitten
vanhempi
commit
d41c992ca1

+ 2 - 2
xxl-job-core/src/main/java/com/xxl/job/core/handler/annotation/XxlJob.java Näytä tiedosto

20
     /**
20
     /**
21
      * init handler, invoked when JobThread init
21
      * init handler, invoked when JobThread init
22
      */
22
      */
23
-    String init();
23
+    String init() default "";
24
 
24
 
25
     /**
25
     /**
26
      * destroy handler, invoked when JobThread destroy
26
      * destroy handler, invoked when JobThread destroy
27
      */
27
      */
28
-    String destroy();
28
+    String destroy() default "";
29
 
29
 
30
 }
30
 }