linux: shared memory interface - link with librt
[supercollider.git] / HelpSource / Classes / SendTrig.schelp
blob659c76f1e899e6ec33a6f53114f42c519144f652
1 class:: SendTrig
2 summary:: Send a trigger message from the server back to the client.
3 categories::  UGens>Triggers
4 related:: Classes/OSCFunc
7 Description::
9 On receiving a trigger (a non-positive to positive transition), send a
10 trigger message from the server back to the client.
13 The trigger message sent back to the client is this:
15 table::
17 ## /tr || A trigger message.
19 ## int: || Node ID.
21 ## int: || Trigger ID.
23 ## float: || Trigger value.
28 This command is the mechanism that synths can use to trigger events in
29 clients. The node ID is the node that is sending the trigger. The trigger
30 ID and value are determined by inputs to the SendTrig unit generator
31 which is the originator of this message.
34 classmethods::
36 method::ar, kr
38 argument::in
40 The trigger.
43 argument::id
45 An integer that will be passed with the trigger message. This is
46 useful if you have more than one SendTrig in a SynthDef.
49 argument::value
51 A UGen or float that will be polled at the time of trigger, and
52 its value passed with the trigger message.
55 Examples::
57 code::
59 s = Server.local;
60 s.boot;
63 SynthDef("help-SendTrig",{
64         SendTrig.kr(Dust.kr(1.0),0,0.9);
65 }).send(s);
67 // register to receive this message
68 o = OSCFunc({ arg msg, time;
69         [time, msg].postln;
70 },'/tr', s.addr);
73 Synth("help-SendTrig");
75 o.free;