Refactored to break out class

This commit is contained in:
Isaac Parenteau
2019-10-04 23:52:57 -05:00
parent 62d19faa40
commit 6d03d212a6
4 changed files with 185 additions and 132 deletions

View File

@@ -60,6 +60,10 @@ public class TrackScheduler extends AudioEventAdapter implements AudioEventListe
// TODO Auto-generated method stub
}
public int trackCount() {
return trackQueue.size();
}
public AudioTrack peek() {
return trackQueue.peek();
}