Most voted "delay" questions
9 questions
Sort by count of
-
16
votes1
answer10829
viewsHow to make the app wait for a while?
It is common to have situations that we need to delay the execution of the code for a period, whether to show or delete a message or something visual shortly after, or to try something again, to…
-
4
votes1
answer1078
viewsDelay in Java
Is it possible to delay in Java? Like for example, I have two messages and I want the second one to appear just a few seconds later,?
-
3
votes2
answers291
viewsPerform another action during a await Task.Delay
I’m making an application where comes a certain part of the code I need to put a: await Task.Delay(tempo); But at the same time I have to wait around this time I need execute an action every 10…
-
2
votes0
answers129
viewsImprove C#socket performance
Client.Cs public void start() { this.Socket.BeginReceive(Buffer, 0, Buffer.Length, 0, new AsyncCallback(beginReceive), this.Socket); } private void beginReceive(IAsyncResult ar) { try { Socket…
-
1
votes1
answer1100
viewsHow can I generate a delay while running an application in Unity?
I am creating an application in Unity and need some function that causes a delay during the execution of the application.
-
0
votes0
answers22
viewsAlternatives to timesleep
Good night! Whenever I use delay or the time.Leep my code simply hangs until the end of the run, as far as I read they do not work in parallel Is there a lib that has the same hold function but…
-
0
votes1
answer871
viewsIt takes time to load site with Laravel
Good evening, I’m starting with Aravel, but I’m facing too much critical delay.. I tried with two templates and both took the same time (on media), I wanted to know your opinion, because I already…
-
0
votes1
answer42
viewsJquery - My What doesn’t work more than once in this animation. What can it be?
I created a function that when the mouse went over the DIV, it would make an animation by inserting and removing classes. But what I don’t understand is that the animation that’s inside the Queue,…
-
0
votes0
answers45
viewsHow to resolve incremental delay in ffplay streaming?
Problem: Incremental delay in streaming runtime with FFPLAY Question: Is there any way to clear the delay buffer at runtime ? I’m using the FFPLAY to reproduce an RTP stream. In the first few…