What i know about Application.Idle is application finishes processing and is about to enter the idle state.Here does we do the operation once it becomes idle or just before the moment it becomes idle.Somewhere i read that "If you have tasks that you must perform before the thread becomes idle, attach them to this event."So is it meant we need to perform before thread becomes idle or after it becomes idle.

I have a bit of code in my project shown below,Does that means we are performing Updation of database when it becomes idle.

    private void Application_Idle(object sender, EventArgs e)
    {

            // Update the explorer's menuitems
           team.UpdateMenu();



            // Update display toolbars.
            team.UpdateToolBar();

            // Update SaveAll
            SaveAll.Enabled = teaj.IsModified;



            Up.Enabled = team.CanNavigateUp; 
link|improve this question

73% accept rate
so will it means for getting updated data from database due to updations of other users that also should be done when it is Idle state ,not at the middle of some other save or some other deadlocking situations. – peter Mar 24 '11 at 5:56
feedback

1 Answer

up vote 3 down vote accepted

First, understand that the Application.Idle is not about "thread idle" but about message processing on the application's UI thread. (Thread idle is different from message loop idle)

Your WinForms app is driven by a message loop that pulls messages out of a queue. When that queue is emptied, the message loop enters a quiet state, sleeping efficiently until the next message appears in the message queue. This helps conserve CPU processing resources (cycles wasted spinning in a loop takes CPU time away from other processes running on the machine, so everything feels slower) and also helps reduce power consumption / extend laptop battery life.

Your app's message loop typically exhausts the message queue backlog fairly frequently - even between keystrokes when you are typing into an edit box.

The Application.Idle event has become a convenient place to take care of application housekeeping chores asynchronously with the primary operations of the app, and without getting involved with multiple threads.

Menus and buttons are typically enabled or disabled to match their corresponding command states when the application goes idle, for example. Since the visible appearance only needs to be updated in user time (the user can't discern the difference between visual state changes exactly at the time of internal state changes compared to changing the visual state a few milliseconds later), the application idle event is a simple and effective opportunity to take care of such housekeeping chores.

I don't see anything in your code sample that looks like a database update. The code is just setting the checked and enabled states of various buttons or menu items to reflect the current state of the internal data.

link|improve this answer
Then why we want to put those events in Application_idle,,What I thought was whenever any other user updating this intranet application I can see the changes in my UI,that’s why I said database update – peter Mar 24 '11 at 6:22
What are the tasks we can put in application_idle event – peter Mar 24 '11 at 7:09
Yes, you could put code in your WinForms app's Application.Idle to check a network resource (database) for data updates. However, you still must be careful not to use blocking calls - use async calls to avoid freezing your UI thread. – dthorpe Mar 24 '11 at 16:23
1  
Also, keep in mind that the Application.Idle event may be fired several times per second or may not fire for several seconds, depending on what the user and your application are doing. If you want to check for data updates on a regular schedule, you should use a timer event instead of Application.Idle. If you start an async network request every time Application.Idle fires, you could flood your server with lots of (redundant) requests per second. – dthorpe Mar 24 '11 at 16:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.