package jmsltestsuite; import com.softsynth.jmsl.Composable; import com.softsynth.jmsl.Playable; public class TimePostingPlayable implements Playable { public double play(double startTime, Composable c) { LongList.post(System.currentTimeMillis()); return startTime; } }