Stories recently tagged with 'Async'

Using Async Delegates instead of the Thread class(jachman.wordpress.com)

submitted by JachmanJachman(530) 2 years, 10 months ago

If you want to write some asnychronous code, the good old fashioned way is to create a new Thread. But this has several pitfalls, e.g. when you need to use parameters or you need to retrieve a return value. Then this way is getting tricky. read more...

add a comment |category: |Views: 32

tags: another

Asynchronous Asp.net Page(weblogs.asp.net)

submitted by kazimanzurrashidkazimanzurrashid(3960) 4 years, 4 months ago

Shows how to implement Async Page in your real life projects read more...

2 comments |category: |Views: 34

tags: another

Asynchronous GridView in 5 simple steps(madskristensen.dk)

submitted by madskristensenmadskristensen(8565) 4 years, 11 months ago

Let’s load the GridView asynchronous and make the page load faster and the perceived speed greater. All in 5 simple steps. This technique can be used with the Repeater, FormView, DataList and other controls. read more...

add a comment |category: |Views: 568

tags: another

AsyncExec and WaitForExit: Speeding Up The Build To Do More(jayflowers.com)

submitted by jflowersjflowers(1860) 5 years, 2 months ago

In this post I show how a small extension to NAnt's exec task can speed up the build and allow you to get more done in less time. read more...

add a comment |category: |Views: 125

tags: another

Asynchronous Pages in ASP.NET 2.0(msdn.microsoft.com)

submitted by jhol3990jhol3990(495) 5 years, 5 months ago

Improve scalability on your asp.net applications ... read more...

add a comment |category: |Views: 5

tags: another

Asynchronous command execution in .NET 2.0(csharpfeeds.com)

submitted by dalzieldalziel(6230) 5 years, 5 months ago

Asynchronous execution of commands was one of great new features in ADO.NET 2.0. The ability to execute commands that take long time to execute asynchronously is very helpful for developers. read more...

add a comment |category: |Views: 19

tags: another

Asynchronous WebService calls(codebetter.com)

submitted by devreddydevreddy(671) 5 years, 6 months ago

The Truth behind the Begin… End… functions read more...

add a comment |category: |Views: 25

tags: another

AsyncWebService calls – the truth behind the Begin.. End.. Methods(codebetter.com)

submitted by RobChappelRobChappel(2720) 5 years, 6 months ago

Long story short, if you want to shotgun your webservice requests, make synchronous calls from worker threads and take the time to get that right. read more...

add a comment |category: |Views: 19

tags: another

Access Web Services Asynchronously in .NET Design Patterns(codeproject.com)

submitted by tiernanotiernano(1658) 5 years, 7 months ago

In the real world, client software usually communicate with web services asynchronously. An asynchronous call returns immediately, and receives the result separately when the processing is completed. This can avoid latency across network freezing the application UI or blocking other processes. read more...

add a comment |category: |Views: 7

tags: another