Exemplo n.º 1
0
 public void stop() {
   if (sampler != null) {
     sampler.stop();
     sampler = null;
   }
 }
Exemplo n.º 2
0
 public void start() {
   if (sampler == null) {
     sampler = new SamplerThread();
     sampler.start();
   }
 }