Tree-Axis ``` Processing  


Back  
Class   Ess
   
Name  

Ess.stop()

   
Examples  
// Example by Krister Olsson 
 
import krister.Ess.*; 
 
void setup() { 
  size(256,200); 
 
  // start up Ess 
  Ess.start(this); 
} 
 
void draw() { 
} 
 
// we are done, clean up Ess 
 
public void stop() { 
  Ess.stop(); 
  super.stop(); 
} 
 

Description   Disposes of all AudioChannels, AudioStreams, and AudioInputs and shuts down Ess. Must be called before an applet or application exits. For details on how to use Ess.stop() in a draw() sketch see the examples on the Ess examples page.
   
Syntax  
Ess.stop()
   
Returns   nothing
   
Usage   Web & Application
   
 
 






   
 
Updated: Tue May 31 04:52:44 PDT 2006


 
  Questions, comments, corrections: e-mail Krister Olsson.