|
|
@@ -98,6 +98,24 @@ public class ExecutionTaskJob {
|
|
|
return ReturnT.SUCCESS;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 视频解构创作任务
|
|
|
+ */
|
|
|
+ @XxlJob("videoDeconstructionContentCreationExecutionTaskCreateHandler")
|
|
|
+ public ReturnT<String> videoDeconstructionContentCreationExecutionTaskCreateHandler(String params) {
|
|
|
+ XxlJobLogger.log("videoDeconstructionContentCreationExecutionTaskCreateHandler start");
|
|
|
+ try {
|
|
|
+ executionTaskService.videoDeconstructionContentCreationExecutionTaskCreateHandler(params);
|
|
|
+ } catch (Exception e) {
|
|
|
+ log.error("videoDeconstructionContentCreationExecutionTaskCreateHandler error", e);
|
|
|
+ XxlJobLogger.log("videoDeconstructionContentCreationExecutionTaskCreateHandler error", e);
|
|
|
+ return ReturnT.FAIL;
|
|
|
+ } finally {
|
|
|
+ XxlJobLogger.log("videoDeconstructionContentCreationExecutionTaskCreateHandler end");
|
|
|
+ }
|
|
|
+ return ReturnT.SUCCESS;
|
|
|
+ }
|
|
|
+
|
|
|
@XxlJob("videoClusterExecutionTaskCreateHandler")
|
|
|
public ReturnT<String> videoClusterExecutionTaskCreateHandler(String params) {
|
|
|
XxlJobLogger.log("videoClusterExecutionTaskCreateHandler start");
|