eight
2025-03-30 069328ea846a08e673c508725e7e8d019f8a6333
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package cn.lihu.jh.module.ecg.service.queue;
 
import cn.lihu.jh.framework.common.exception.ErrorCode;
 
import java.util.concurrent.Callable;
 
public class BedReloadCallable implements Callable<ErrorCode> {
 
    QueueServiceTxFunctions queueService;
 
    public BedReloadCallable(QueueServiceTxFunctions queueService)
    {
        super();
        this.queueService = queueService;
    }
 
    public ErrorCode call() throws Exception {
        ErrorCode ec = queueService.bedReload();
 
        queueService.monitorInfo();
        return ec;
    }
 
}