每10秒发送一次消息给服务器错误

每10秒发送一次消息给服务器错误

本文介绍了每10秒发送一次消息给服务器错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,

我想每隔10秒从客户端向服务器发送一条消息。这就是我发现的方式:

I want to send to the server a message from the client every 10 seconds. That is the way I found to do it:

var startTimeSpan = TimeSpan.Zero;
            var periodTimeSpan = TimeSpan.FromSeconds(10);

            var timer = new System.Threading.Timer((e) =>
            {
                Update();
            }, null, startTimeSpan, periodTimeSpan);    

(Update()是将消息发送到服务器的方法)

(Update() is the method that sends the message to the server)

它适用于我,但当我发送一个消息manualy到服务器,来自计时器的消息就会停止。

It works for me, but when I send a message manualy to the server, the messages from the timer stop coming.

有人可以考虑这个原因并帮助我吗?

Can someone think for a reason for that and help me?

推荐答案

您是如何手动发送到服务器的?你能否提供Update()方法的一些细节?

how are you sending manually to the server? Can you give some details of Update() method?

 


这篇关于每10秒发送一次消息给服务器错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 05:25