Merge pull request #506 from andrewcsmith/patch-2
[supercollider.git] / HelpSource / Classes / OSCMessageDispatcher.schelp
bloba13a86e9ad1b13edd0ebde349388f04d85e8c3c2
1 CLASS:: OSCMessageDispatcher
2 summary:: The default dispatcher class for OSCFunc and OSCdef.
3 categories:: External Control>OSC>Dispatchers
4 related:: Classes/OSCFunc, Classes/OSCdef, Classes/AbstractWrappingDispatcher, Classes/AbstractDispatcher, Classes/AbstractMessageMatcher, Classes/OSCMessagePatternDispatcher, Classes/OSCFuncAddrMessageMatcher, Classes/OSCFuncRecvPortMessageMatcher, Classes/OSCFuncBothMessageMatcher, Guides/OSC_communication
6 DESCRIPTION::
7 OSCMessageDispatcher dispatches incoming OSC messages to matching functions. Normally users should not have to create or message instances of this class directly.
10 CLASSMETHODS::
13 INSTANCEMETHODS::
15 METHOD:: wrapFunc
16 Called internally to wrap functions in message matcher objects, if needed.
18 argument:: funcProxy
19 An instance of link::Classes/OSCFunc:: or link::Classes/OSCdef:: whose function(s) are to be wrapped.
21 METHOD:: getKeysForFuncProxy
22 Get the keys at which a responder func's functions are stored in this dispatcher's active dictionary. The keys will be an OSC path.
24 argument:: funcProxy
25 The link::Classes/OSCFunc:: or link::Classes/OSCdef:: whose keys should be returned.
27 returns:: An link::Classes/Array:: containing the funcProxy's path as a link::Classes/Symbol::.
29 METHOD:: value
30 Attempt to match an incoming OSC message with this dispatcher's responder funcs, and evaluate their functions for all matches found.
32 argument:: msg
33 The OSC message as an link::Classes/Array:: in the form code::[OSCAddress, other args]::.
35 argument:: time
36 A link::Classes/Float:: indicating the time the incoming message was sent.
38 argument:: addr
39 A link::Classes/NetAddr:: indicating the source of the message.
41 argument:: recvPort
42 An link::Classes/Integer:: indicating the port on which the message was received.
44 METHOD:: register
45 Adds this dispatcher to thisProcess.recvOSCfunc.
47 METHOD:: unregister
48 Removes this dispatcher from thisProcess.recvOSCfunc.
50 METHOD:: typeKey
51 Returns code::'OSC unmatched'::.
53 returns:: A link::Classes/Symbol::.