Merge pull request #506 from andrewcsmith/patch-2
[supercollider.git] / HelpSource / Classes / OSCFuncAddrMessageMatcher.schelp
blob2d77e8b682696a47c6f01b546b54b5f133c923c8
1 CLASS:: OSCFuncAddrMessageMatcher
2 summary:: Matches incoming messages to responder funcs based on sender address
3 categories:: External Control>OSC>Matchers
4 related:: Classes/AbstractMessageMatcher, Classes/OSCFuncRecvPortMessageMatcher, Classes/OSCFuncBothMessageMatcher
6 DESCRIPTION::
7 This is used by link::Classes/OSCMessageDispatcher:: and link::Classes/OSCMessagePatternDispatcher:: to match incoming OSC messages to instances of link::Classes/OSCFunc:: or link::Classes/OSCdef:: using sender address. This class is private, and generally users should not need to address instances directly.
10 CLASSMETHODS::
12 METHOD:: new
13 Make a new instance.
15 argument:: addr
16 The link::Classes/NetAddr:: to attempt to match.
18 argument:: func
19 The link::Classes/Function:: to evaluate if a match is found.
21 returns:: An OSCFuncAddrMessageMatcher.
24 INSTANCEMETHODS::
25 private:: init
27 METHOD:: value
28 Check to see if a message matches, and evaulate func if it does.
30 argument:: msg
31 The OSC message as an link::Classes/Array:: in the form code::[OSCAddress, other args]::.
33 argument:: time
34 A link::Classes/Float:: indicating the time the incoming message was sent.
36 argument:: testAddr
37 A link::Classes/NetAddr:: indicating the source of the message.
39 argument:: recvPort
40 An link::Classes/Integer:: indicating the port on which the message was received.