Revert "Class browser's help button in 3.5 should open the scdoc browser, not old...
[supercollider.git] / Help / Core / Kernel / Process.html
bloba2092abf9348cc44bb6c79736b69f8a7ab66da19
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2 <html>
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5 <meta http-equiv="Content-Style-Type" content="text/css">
6 <title></title>
7 <meta name="Generator" content="Cocoa HTML Writer">
8 <meta name="CocoaVersion" content="824.44">
9 <style type="text/css">
10 p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 18.0px Helvetica}
11 p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica; min-height: 14.0px}
12 p.p3 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica}
13 </style>
14 </head>
15 <body>
16 <p class="p1"><b>Process</b></p>
17 <p class="p2"><br></p>
18 <p class="p3"><b>superclass: Object</b></p>
19 <p class="p2"><br></p>
20 <p class="p3">A Process is the runtime environment for the virtual machine and interpreter.</p>
21 <p class="p3">It has a subclass named Main which is where you should override the methods</p>
22 <p class="p3">of Process. There are two methods of interest. One is named 'startup' and is<span class="Apple-converted-space"> </span></p>
23 <p class="p3">called after the class library has been compiled. The other is named 'run' and</p>
24 <p class="p3">is called when the user chooses the Run menu command.</p>
25 <p class="p2"><br></p>
26 <p class="p3"><b>startup</b></p>
27 <p class="p2"><br></p>
28 <p class="p3">called after the class library has been compiled. Override this in class Main to do whatever you want.</p>
29 <p class="p2"><br></p>
30 <p class="p3"><b>run</b></p>
31 <p class="p2"><br></p>
32 <p class="p3">called when the user chooses the Run menu command. Override this in class Main to do whatever you want.</p>
33 <p class="p2"><br></p>
34 <p class="p3"><b>*tailCallOptimize</b></p>
35 <p class="p2"><br></p>
36 <p class="p3">Returns a Boolean indicating whether tail call optimization is on. The default is on.</p>
37 <p class="p2"><br></p>
38 <p class="p3"><b>*tailCallOptimize_(aBoolean)</b></p>
39 <p class="p2"><br></p>
40 <p class="p3">Turns tail call optimization on or off. Setting this to false can help with debugging by including intermediate levels in an error backtrace.</p>
41 </body>
42 </html>