मैं एक सिग्नलआर कनेक्शन को कैसे मार सकता हूं?


10

मैं एक वेबसाइट पर डेटा स्थानांतरित करने के लिए सिग्नलआर का उपयोग कर रहा हूं। लेकिन सिग्नलआर केवल समय की अवधि के लिए डेटा भेजने में सक्षम होना चाहिए और यदि समय अवधि बीत चुकी है तो कनेक्शन को मार दिया जाना चाहिए।

$.connection.hub.stop()यदि अनुरोध अभी भी लंबित है और पूरा नहीं हुआ है तो स्टॉप-फंक्शन रद्द कर दिया गया है। लेकिन इस अनुरोध को रद्द करने के लिए मजबूर किया जाना चाहिए चाहे कितना भी डेटा भेजा गया हो।

मैं एक सिग्नल-कनेक्शन को कैसे मार सकता हूं ?

जवाबों:


6

जैसा कि आप इस Microsoft दस्तावेज़ीकरण में टाइमआउट और रखने की सेटिंग्स के बारे में देख सकते हैं, आप विकल्पों में डिस्कनेक्ट टाइमआउट को परिभाषित कर सकते हैं।

उदाहरण:

protected void Application_Start(object sender, EventArgs e)
{
    // Make long-polling connections wait a maximum of 110 seconds for a
    // response. When that time expires, trigger a timeout command and
    // make the client reconnect.
    GlobalHost.Configuration.ConnectionTimeout = TimeSpan.FromSeconds(110);

    // Wait a maximum of 30 seconds after a transport connection is lost
    // before raising the Disconnected event to terminate the SignalR connection.
    GlobalHost.Configuration.DisconnectTimeout = TimeSpan.FromSeconds(30);

    // For transports other than long polling, send a keepalive packet every
    // 10 seconds. 
    // This value must be no more than 1/3 of the DisconnectTimeout value.
    GlobalHost.Configuration.KeepAlive = TimeSpan.FromSeconds(10);

    RouteTable.Routes.MapHubs();
}

संपादित करें : चूंकि आप क्लाइंट से कनेक्शन को मारना चाहते हैं, चाहे आप किसी भी CancellationTokenव्यवहार के बारे में बात कर रहे हों, लेकिन दुर्भाग्य से यह अभी भी सिग्नलआर में समर्थित नहीं है क्योंकि आप यहां और यहां देख सकते हैं , टीम ऐसा करना चाहती है, SignalRलेकिन अभी भी है इसके बारे में कोई खबर नहीं।


जैसा कि मैंने कहा था कि फ्रंटेंड-साइट से अनुरोध पूरा नहीं हुआ है, इसलिए अभी भी सीमांत से कुछ डेटा सिग्नलआर-बैकेंड / हब को भेजा जाना है। इसलिए मैं एक फ्रंटएंड-सॉल्यूशन की तलाश कर रहा हूं, क्योंकि डेटा की एक सभ्य राशि भेजी जाती है और यदि समय की अवधि समाप्त हो जाती है, तो कनेक्शन को फ्रंटएंड द्वारा मार दिया जाना चाहिए, भले ही डेटा ट्रांसमिट किया गया हो या नहीं। क्या आप समझते हैं कि मैं क्या देख रहा हूँ?
स्नेकब्रैक

@Snickbrack आप क्लाइंट-साइड के माध्यम से कनेक्शन को मारना चाहते हैं, भले ही आप अभी डेटा भेज रहे हों, मैं सही हूं?
किरिल १५१२

1
हाँ। तुम सही हो।
स्नेकब्रैक

@Snickbrack ने मेरे उत्तर को अपडेट किया।
किरिल 1512

@Snickbrack अपने प्रश्न, इस या अन्य उत्तरों के सही उत्तर का चयन करना न भूलें ...
Kiril1512

1

हब जीवन भर की घटना के बारे में कृपया इस Microsoft दस्तावेज़ को पढ़ें । आप इन सेटिंग्स के लिए डिफ़ॉल्ट मान बदल सकते हैं, उन्हें Application_Startअपनी Global.asaxफ़ाइल में सेट कर सकते हैं। लेकिन इस तरह से आप ग्राहक पक्ष पर पूर्ण नियंत्रण नहीं रख सकते। इसलिए आप जावास्क्रिप्ट setTimeoutफ़ंक्शन का उपयोग करते हैं और एक नया उपयोगकर्ता कनेक्ट होने पर समय प्रपत्र सर्वर अंत पास करते GlobalHost.Configuration.DisconnectTimeoutहैं। यह किसी भी समय हो सकता है या आप चाहते हैं। मैं डेमो प्रोजेक्ट के साथ एक पूर्ण उदाहरण देता हूं। वास्तव में मैं इस लॉजिक का उपयोग वास्तविक समय में टिकटिंग टिकट के लिए एक बहुत बड़ी टिकटिंग प्रणाली में करता हूं। (कृपया सभी इनलाइन टिप्पणी पढ़ें)

नमूना:

public class MyModel
{
    public int Id { get; set; }

    public string Name { get; set; }


    public static string Send(MyModel my)
    {
        //Do Somthing           
        return $"Data Sending to {my.Name}...";
    }
    public static string Stop(string name)
    {
        //Do Somthing

        return $"ForceStop {name}.";
    }
    public static string Delete()
    {
        //Do Somthing

        return "Deleted";
    }
}

हब:

[HubName("myHub")]
public class MyHub : Hub
{
    int connectionTimeOut = 10;//sec

    [HubMethodName("connect")]
    public void Connect()
    {  
            //apply logic if any when user connected or reload page
            //set connection Time Out as you need
        connectionTimeOut= 10;// GlobalHost.Configuration.DisconnectTimeout

       Clients.Client(Context.ConnectionId).onNewUserConnected(connectionTimeOut);
    }
    [HubMethodName("startSendingServer")]
    public void StartSending(int id, string name)//pass anything you need
    {
        //apply logic if any when start sending data

        var my = new MyModel
        {
            Id = id,
            Name = name
        };
        var status = MyModel.Send(my);//example

        var result = new
        {
            status,
            name
        };

        Clients.Client(Context.ConnectionId).startSendingClient(result);

    }

    [HubMethodName("forceStopServer")]
    public void ForceStop(string name)//pass anything you need
    {
        //apply logic if any when force stop sending data
        var status = MyModel.Stop(name);
        Clients.Client(Context.ConnectionId).forceStopClint(status);
    }


    public override Task OnDisconnected(bool stopCalled)
    {

        //apply logic if any when connection Disconnected

        var status = MyModel.Delete();//example
        if (stopCalled)
        {
            //  status=String.Format("Client {0} explicitly closed the connection.", Context.ConnectionId)
            //your code here
        }
        else
        {
            // status=String.Format("Client {0} timed out .", Context.ConnectionId);
            //your code here
            //Clients.Client(Context.ConnectionId).onUserDisconnected(status);
        }

        return base.OnDisconnected(stopCalled);
    }


}

TestView:

<div class="row">
    <div class="col-md-12">
        <h1> Status: <span id="hubStatus"></span></h1>
        <br />
        <h4> Countdown : <span id="counter"></span></h4>
        <br />

        <button id="btnHub" class="btn btn-primary btn-lg">Start Sending Data</button>
    </div>
</div>
@section scripts{
    <script src="~/Scripts/app/hub.js"></script>
}

hub.js:

var proxyTimer = null;
var sendTimeLimit = 1;//sec
var sessionTime = sendTimeLimit * 1000;

$(function () {
    var myProxy = $.connection.myHub;
    $.connection.hub.start().done(function () {
        registerServerEvents(myProxy);
    });

    clientMethods(myProxy);
});

function registerServerEvents(proxyHub) {
    proxyHub.server.connect();
    $(document).on("click", "#btnHub", function (e) {

        $("#hubStatus").html("Sending..");
        $("#btnHub").text("Count Down Start...");

        //Logic Before start sending data.
        var id = 1;
        var name = "AzR";        
        proxyHub.server.startSendingServer(id,name);

       // $.connection.hub.disconnected(function () {
      //  setTimeout(function () { $.connection.hub.start(); }, 5000); // Restart connection after 5 seconds.
       //});

        $.connection.hub.disconnected(function () {
            $("#hubStatus").html("Disconnected");// you can restart on here.     
            $("#btnHub").text("Stat Again after reload window");

        });

    });
}



function clientMethods(proxyHub) {

    //proxyHub.on('onConnected', function (sendTimeLimit) {
    //    sendTimeLimit = sendTimeLimit;
    //});

    proxyHub.on('onNewUserConnected', function (serverItem) {
        sendTimeLimit = serverItem;
        sessionTime = sendTimeLimit * 1000;
    });


    proxyHub.on('startSendingClient', function (serverItem) {

        //Logic after start sending data.
        var name = serverItem.name;
        var status = serverItem.status;
        $("#hubStatus").html(status);
        $("#counter").html(sendTimeLimit);
        timeCounter();
        startTimer(proxyHub, name );
    });

    proxyHub.on('forceStopClint', function (serverItem) {


        clearClintPendingTask(serverItem);//Logic before proxy stop.
        $("#btnHub").text("Force Stop...");
        $.connection.hub.stop();
    });

    proxyHub.on('onUserDisconnected', function (serverItem) {
        //Logic after proxy Disconnected (time out).
        $("#hubStatus").html(serverItem);
        $("#btnHub").text("Stat Again after reload window");
   });
}

//Logic before proxy stop.
function clearClintPendingTask(status) {
    //do all you need
    $("#hubStatus").html(status); 
    stopTimer();
}

function startTimer(proxyHub,data) {
    stopTimer();
    proxyTimer = setTimeout(function () {
        proxyHub.server.forceStopServer(data);
    }, sessionTime);
}

function stopTimer() {
    if (proxyTimer) {
        clearTimeout(proxyTimer);
        proxyTimer = null;
    }
}

function timeCounter() {
    var counter = sendTimeLimit;
    var interval = setInterval(function () {
        counter--;
        $("#counter").html(counter);
        if (counter == 0) {
            //Do something
            $("#counter").html("Countdown ended!");
            // Stop the counter
            clearInterval(interval);
        }
    }, 1000);
}

(परीक्षण)


0

आपको टाइमआउट परिभाषित करने की आवश्यकता है। सर्वर पर आप इस तरह डिसकनेक्ट टाइमआउट सेट कर सकते हैं:

GlobalHost.Configuration.DisconnectTimeout = TimeSpan.FromMinutes(30);

https://zzz.buzz/2016/05/11/setting-timeout-for-signalr-for-easier-debugging/


जैसा कि मैंने कहा था कि फ्रंटेंड-साइट से अनुरोध पूरा नहीं हुआ है, इसलिए अभी भी सीमांत से कुछ डेटा सिग्नलआर-बैकेंड / हब को भेजा जाना है। इसलिए मैं एक दृश्य-समाधान की तलाश कर रहा हूं।
स्नेकब्रैक

0

अद्यतन संपादित करें, कृपया नीचे विकल्प 3 देखें। अन्य सभी टाइमआउट पर भरोसा कर रहे हैं, मैंने एक मजबूर डिस्कनेक्ट पोस्ट किया है।

यदि आप एक फोर्स डिस्कनेक्ट की कोशिश कर रहे हैं - आप कनेक्ट किए गए उपयोगकर्ताओं की सूची प्राप्त कर सकते हैं और ForceLogOutसर्वर साइड पर फ़ंक्शन को कॉल कर सकते हैं , मैंने इसे कोड प्रोजेक्ट पर कहीं देखा, मुझे आशा है कि यह मदद करता है। यदि आप केवल कुछ उपयोगकर्ताओं को बलपूर्वक मारना / मारना चाहते हैं, तो केवल उस कनेक्शन को लूप करें और मारें।

सर्वर साइड


public class User
{
    public string Name { get; set; }
    public HashSet<string> ConnectionIds { get; set; }
}

public class ExtendedHub : Hub
{        
   private static readonly ConcurrentDictionary<string, User> ActiveUsers  = 
      new ConcurrentDictionary<string, User>(StringComparer.InvariantCultureIgnoreCase);
    public IEnumerable<string> GetConnectedUsers()
    {
        return ActiveUsers.Where(x => {

            lock (x.Value.ConnectionIds)
            {
                return !x.Value.ConnectionIds.Contains
                        (Context.ConnectionId, StringComparer.InvariantCultureIgnoreCase);
            }

        }).Select(x => x.Key);
    }           

    public void forceLogOut(string to)
    {
        User receiver;
        if (ActiveUsers.TryGetValue(to, out receiver))
        {
            IEnumerable<string> allReceivers;
            lock (receiver.ConnectionIds)
            {
                allReceivers = receiver.ConnectionIds.Concat(receiver.ConnectionIds);      
            }

            foreach (var cid in allReceivers)
            {
             // ***************** log out/KILL connection for whom ever your want here
                Clients.Client(cid).Signout();
            }
        }
    }
}

ग्राहक की ओर

 // 1- Save your connection variable when you start it, and later on you can use it to stop.
var myHubProxy = $.connection.myHub 
// 2- Use it when you need to stop it, IF NOT YOU WILL GET AN ERROR
myHubProxy.client.stopClient = function() {
    $.connection.hub.stop();
};

// With a button for testing
$('#SomeButtonKillSignalr').click(function () {
            $.connection.hub.stop();                
        });

विकल्प 3 के साथ अपडेट किया गया : अनुरोध के आधार पर ... अन्य समाधान समय पर निर्भर करते हैं, लेकिन आप इसे सीधे कनेक्शन को स्वयं निपटाने के लिए भी मजबूर कर सकते हैं

मैंने सिग्नलआर कोड को खोला, और अंदर आप DisposeAndRemoveAsyncएक ग्राहक कनेक्शन की वास्तविक समाप्ति देख सकते हैं ।

1- आप DisposeAndRemoveAsyncअपने कनेक्शन के साथ संशोधित या कॉल कर सकते हैं।

2- फिर कॉल करें RemoveConnection(connection.ConnectionId);

public async Task DisposeAndRemoveAsync(HttpConnectionContext connection)
        {
            try
            {
                // this will force it
                await connection.DisposeAsync();
            }
            catch (IOException ex)
            {
                _logger.ConnectionReset(connection.ConnectionId, ex);
            }
            catch (WebSocketException ex) when (ex.InnerException is IOException)
            {
                _logger.ConnectionReset(connection.ConnectionId, ex);
            }
            catch (Exception ex)
            {
                _logger.FailedDispose(connection.ConnectionId, ex);
            }
            finally
            {
                // Remove it from the list after disposal so that's it's easy to see
                // connections that might be in a hung state via the connections list
                RemoveConnection(connection.ConnectionId);
            }
        }

सावधानी, जब यह किया जाता है तो अपने आप को साफ करें।


जैसा कि मैंने कहा था $.connection.hub.stop()-Function में कोई त्रुटि है क्योंकि अनुरोध पूरी तरह से Backend को नहीं भेजा गया है। इसलिए मैं एक ऐसे समाधान की तलाश कर रहा हूं, जो वर्तमान में सक्रिय कनेक्शन को मारता है, भले ही वहां मौजूद अनुरोध चल रहा हो।
स्निकब्रैक
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.