Classes in uk.org.toot.audio.server that implement AudioTimingStrategy |
class |
SleepTimingStrategy
An AudioTimingStategy which uses Thread.sleep(long millis, long nanos)
and runs with priority Thread.MAX_PRIORITY. |
class |
WaitTimingStrategy
An AudioTimingStategy which uses Object.sleep(long millis, long nanos)
and runs with priority Thread.MAX_PRIORITY. |
class |
YieldTimingStrategy
An AudioTimingStategy which uses Thread.yield() and runs with priority
Thread.NORM_PRIORITY+1 to avoid blocking other threads excessively. |