zhongrj
2024-01-09 ebb4cec607db24427690499d0d98e607536461e7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.xxl.job.core.handler.impl;
 
import com.xxl.job.core.context.XxlJobHelper;
import com.xxl.job.core.handler.IJobHandler;
 
/**
 * glue job handler
 *
 * @author liyh
 */
public class GlueJobHandler extends IJobHandler {
 
    private long glueUpdatetime;
    private IJobHandler jobHandler;
 
    public GlueJobHandler(IJobHandler jobHandler, long glueUpdatetime) {
        this.jobHandler = jobHandler;
        this.glueUpdatetime = glueUpdatetime;
    }
 
    public long getGlueUpdatetime() {
        return glueUpdatetime;
    }
 
    @Override
    public void execute() throws Exception {
        XxlJobHelper.log("----------- glue.version:" + glueUpdatetime + " -----------");
        jobHandler.execute();
    }
 
    @Override
    public void init() throws Exception {
        this.jobHandler.init();
    }
 
    @Override
    public void destroy() throws Exception {
        this.jobHandler.destroy();
    }
}