Is it possible to control a thread below 25ms?

  • Thread starter Thread starter lightdoll
  • Start date Start date
L

lightdoll

hello everyone..

i have one kind of question about windows's performance or Net.

Can i control a sleep of thread below 25ms in C#?

for example)

if i want to send periodic some data to any client below 25ms.

How do you write this kind of programming?
 
lightdoll said:
i have one kind of question about windows's performance or Net.

Can i control a sleep of thread below 25ms in C#?

for example)

if i want to send periodic some data to any client below 25ms.

How do you write this kind of programming?

Windows is not a real time operating system and .NET is not
a real time programming environment.

I think you are using the wrong technology for the task.

Arne
 
Back
Top