• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: How to show a progress without multithreading?
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: How to show a progress without multithreading?


  • Subject: Re: How to show a progress without multithreading?
  • From: Quincey Morris <email@hidden>
  • Date: Sat, 13 Mar 2010 20:23:40 -0800

On Mar 13, 2010, at 19:33, Alexander Bokovikov wrote:

> I have a time-consuming procedure, and I'd like to show its progress. I can't use multi-threading for some technical reason.
> I'm looking for a way to update a progress indicator from this procedure,
> As far as I understand my task is to cause message loop processing.
> And my question is - how to do it?

It's fairly straightforward -- repeatedly invoke a method that does the following:

	NSEvent *event;
	while ((event = [NSApp nextEventMatchingMask: NSAnyEventMask
				untilDate: nil inMode: NSEventTrackingRunLoopMode dequeue: YES]))
		[NSApp sendEvent: event];

Make sure this is called often enough for responsiveness (say, at least every 0.1 secs), but not too often to interfere with performance.

You might want to choose a different run loop mode, if you have special requirements. NSEventTrackingRunLoopMode is sufficient to allow keystrokes and mouse clicks to be processed, so that you can have a UI (say, Esc key or button) to cancel the procedure if you want.


_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

  • Follow-Ups:
    • Re: How to show a progress without multithreading?
      • From: Ken Thomases <email@hidden>
References: 
 >How to show a progress without multithreading? (From: "Alexander Bokovikov" <email@hidden>)

  • Prev by Date: function cannot change buttons behavior
  • Next by Date: Re: How to show a progress without multithreading?
  • Previous by thread: Re: How to show a progress without multithreading?
  • Next by thread: Re: How to show a progress without multithreading?
  • Index(es):
    • Date
    • Thread