刷新或重新加载nodejs时终止套接字连接

时间:2013-11-04 17:00:35

标签: node.js socket.io

我有一个node.js应用程序订阅了一个监听事件的频道。当它听到该事件时,它会向另一个新频道发布另一个事件。我一直在使用MubSub进行发布/订阅。我的问题是,无论我每次重新加载页面时我都做了两个监听器和两个发布,然后3,4,5,6等...

我不明白他们为什么不断开连接?

if (curURL == '/handwash') {

    db2.handwash.find({
        "event": "handwash"
    }).sort({
        "message.time": -1
    }).limit(10).forEach(function(error, x) {
        if (error || !x) {
            console.log("error getting items");
        } else {
            socket.emit('archive', x.message);
        }
    });


    channel2.subscribe('dealer out', function(message) {

        console.log("new dealer event " + message);
        db.events.find({
            "event": "wash"
        }).sort({
            "message.time": -1
        }).limit(1).forEach(function(error, x) {
            if (error || !x) {
                console.log("error getting items");
            } else {
                console.log("found last handwash..." + x.message.type + "....publishing");

                var message = ({

                        'tableid': 123,
                        'time': Date(),
                        'type': x.message.type,

                })

                channel.publish('handwash', message );

                socket.emit('message', message);
            }
        });


        //socket.emit('message', message);

    });

    socket.on("disconnect", function(s) {
        console.log("Disconnected from global handler");
    });
}

1 个答案:

答案 0 :(得分:0)

问题在于我使用MubSub进行订阅和发布消息。通过为我的连接创建变量然后使用unsubscribe();

关闭它来修复它
var subscription = channelEvents.subscribe('pocket', function(message) {}
subscription.unsubscribe();