Jay
2024-11-08 02722a3f9eca857ce7fffea352e9f7ee692a1b71
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
41
42
43
44
45
46
47
48
49
50
package com.iailab.netsdk.demo.frame.vto;
 
import javax.swing.JFrame;
import javax.swing.SwingUtilities;
 
import com.sun.jna.Pointer;
 
import com.iailab.netsdk.common.Res;
import com.iailab.netsdk.lib.NetSDKLib.LLong;
import com.iailab.netsdk.lib.NetSDKLib.fHaveReConnect;
 
/**
 * 网络连接恢复,设备重连成功回调 通过 CLIENT_SetAutoReconnect 设置该回调函数,当已断线的设备重连成功时,SDK会调用该函数
 * 
 * @author 47081
 *
 */
public class DefaultHaveReconnect implements fHaveReConnect {
    private static DefaultHaveReconnect INSTANCE;
    private JFrame frame;
 
    public void setFrame(JFrame frame) {
        this.frame = frame;
    }
 
    private DefaultHaveReconnect() {
        // TODO Auto-generated constructor stub
    }
 
    public static DefaultHaveReconnect getINSTANCE() {
        if (INSTANCE == null) {
            INSTANCE = new DefaultHaveReconnect();
        }
        return INSTANCE;
    }
 
    @Override
    public void invoke(LLong lLoginID, String pchDVRIP, int nDVRPort, Pointer dwUser) {
        System.out.printf("ReConnect Device[%s] Port[%d]\n", pchDVRIP, nDVRPort);
 
        // 重连提示
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                if (frame != null) {
                    frame.setTitle(Res.string().getPTZ() + " : " + Res.string().getOnline());
                }
            }
        });
    }
}