public interface FaderStartListener
BeatFinder.addFaderStartListener(FaderStartListener).
Whenever a relevant message is received, the fadersChanged(Set, Set) method in the listener object
is invoked.| Modifier and Type | Method and Description |
|---|---|
void |
fadersChanged(Set<Integer> playersToStart,
Set<Integer> playersToStop)
Invoked when we have received a message telling us which players should start and stop playing.
|
void fadersChanged(Set<Integer> playersToStart, Set<Integer> playersToStop)
To reduce latency, on-air updates are delivered to listeners directly on the thread that is receiving them
them from the network, so if you want to interact with user interface objects in this method, you need to use
javax.swing.SwingUtilities.invokeLater(Runnable)
to do so on the Event Dispatch Thread.
Even if you are not interacting with user interface objects, any code in this method
must finish quickly, or it will add latency for other listeners, and beat announcements will back up.
If you want to perform lengthy processing of any sort, do so on another thread.
playersToStart - contains the device numbers of all players that should start playingplayersToStop - contains the device numbers of all players that should stop playingCopyright © 2016–2019 Deep Symmetry, LLC. All rights reserved.