Mailing Lists: Apple Mailing Lists

Image of Mac OS face in stamp
 
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Recommended way to setup a timer in a CoreAudion application?



I'm using NSTimer for something similar, which works great, even
though it isn't exactly precise (not sure if you really need a
nanosecond precise timer).

NSTimer *myTimer = [[NSTimer scheduledTimerWithTimeInterval: fireInterval
											  target:self
											selector:@selector(myMethodToCall:)
											userInfo:nil
											 repeats:NO] retain];
...

if (myTimer) {
	[myTimer invalidate];
	[myTimer release];
	myTimer = nil;
}


HTH,
--th


2008/1/16, Stéphane Letz <email@hidden>:
> Ho,
>
> In my CoreAudio based application, I need to setup a timer to check
> that a failure condition has been triggered (like the underlying
> driver is not more running). I tried to play with
> CFRunLoopTimerCreate, CFRunLoopAddTimer API without much success up to
> now. Is there a recommended way to do that?
>
> Thanks
>
> Stephane Letz
>  _______________________________________________
> Do not post admin requests to the list. They will be ignored.
> Coreaudio-api mailing list      (email@hidden)
> Help/Unsubscribe/Update your Subscription:
> http://lists.apple.com/mailman/options/coreaudio-api/email@hidden
>
> This email sent to email@hidden
>
 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Coreaudio-api mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/coreaudio-api/email@hidden

This email sent to email@hidden

References: 
 >Recommended way to setup a timer in a CoreAudion application? (From: Stéphane Letz <email@hidden>)



Visit the Apple Store online or at retail locations.
1-800-MY-APPLE

Contact Apple | Terms of Use | Privacy Policy

Copyright © 2007 Apple Inc. All rights reserved.