You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(4) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
(3) |
Jul
|
Aug
(7) |
Sep
|
Oct
(2) |
Nov
(1) |
Dec
(7) |
2006 |
Jan
(1) |
Feb
(2) |
Mar
(3) |
Apr
(3) |
May
(5) |
Jun
(1) |
Jul
|
Aug
(2) |
Sep
(4) |
Oct
(17) |
Nov
(18) |
Dec
(1) |
2007 |
Jan
|
Feb
|
Mar
(8) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
(6) |
Dec
(1) |
2008 |
Jan
(17) |
Feb
(20) |
Mar
(8) |
Apr
(8) |
May
(10) |
Jun
(4) |
Jul
(5) |
Aug
(6) |
Sep
(9) |
Oct
(19) |
Nov
(4) |
Dec
(35) |
2009 |
Jan
(40) |
Feb
(16) |
Mar
(7) |
Apr
(6) |
May
|
Jun
(5) |
Jul
(5) |
Aug
(4) |
Sep
(1) |
Oct
(2) |
Nov
(15) |
Dec
(15) |
2010 |
Jan
(5) |
Feb
(20) |
Mar
(12) |
Apr
|
May
(2) |
Jun
(4) |
Jul
|
Aug
(11) |
Sep
(1) |
Oct
(1) |
Nov
(3) |
Dec
|
2011 |
Jan
(8) |
Feb
(19) |
Mar
|
Apr
(12) |
May
(7) |
Jun
(8) |
Jul
|
Aug
(1) |
Sep
(21) |
Oct
(7) |
Nov
(4) |
Dec
|
2012 |
Jan
(3) |
Feb
(25) |
Mar
(8) |
Apr
(10) |
May
|
Jun
(14) |
Jul
(5) |
Aug
(12) |
Sep
(3) |
Oct
(14) |
Nov
|
Dec
|
2013 |
Jan
(10) |
Feb
(4) |
Mar
(10) |
Apr
(14) |
May
(6) |
Jun
(13) |
Jul
(37) |
Aug
(20) |
Sep
(11) |
Oct
(1) |
Nov
(34) |
Dec
|
2014 |
Jan
(8) |
Feb
(26) |
Mar
(24) |
Apr
(5) |
May
|
Jun
|
Jul
|
Aug
(4) |
Sep
(28) |
Oct
(4) |
Nov
(4) |
Dec
(2) |
2015 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
(13) |
Jul
|
Aug
(3) |
Sep
(8) |
Oct
(11) |
Nov
(16) |
Dec
|
2016 |
Jan
|
Feb
(6) |
Mar
|
Apr
(9) |
May
(23) |
Jun
(3) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2017 |
Jan
|
Feb
|
Mar
|
Apr
(7) |
May
(3) |
Jun
|
Jul
(3) |
Aug
|
Sep
(8) |
Oct
|
Nov
|
Dec
(3) |
2018 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2019 |
Jan
(4) |
Feb
|
Mar
(2) |
Apr
(6) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2020 |
Jan
|
Feb
|
Mar
|
Apr
(31) |
May
|
Jun
|
Jul
|
Aug
(7) |
Sep
|
Oct
|
Nov
|
Dec
(1) |
2021 |
Jan
(2) |
Feb
(2) |
Mar
(5) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2022 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
10
|
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
29
|
30
(1) |
|
|
|
From: John G. <joh...@in...> - 2005-11-30 22:54:50
|
Hi, I'm new here. I'm one of the developers of RTcmix <rtcmix.org>. I've just implemented an OSC server within RTcmix using liblo. Nice job! It was really easy to understand and integrate into our project. I want to respond to a post from August about the use of lo_server_thread_del_method() -- more specifically, about the ability to have multiple callbacks for a single path and type. Here's some context... > From: Steve Harris > Re: lo_server_thread_del_method() > 2005-08-22 14:07 > > On Mon, Aug 22, 2005 at 06:48:26 +0100, Martin Habets wrote: > > On Sat, Aug 20, 2005 at 11:20:33AM +0100, Steve Harris wrote: > > > The arguments that are used to pick the method to remove are the path and > > > typespec, which seems reasonable, but it is (currently) possible to have > > > more than one method bound to a particular path and typespec. I dont know > > > if anyone does that though. > > > > I did not know this was possible (and don't use it). Can't think of a proper > > way (as in functional strength) to use multiple methods for one path. > > I modelled it after the apache module API, you return a 0, indicating that > you've handled it, or a 1 indicating that it should fall through to other > methods that match the incoming message. > > Its not a requirement that you fully specify the path and typespec. > OTOH I was just speculating about what features would be useful. > > > > lo_server_thread_add_method() returns a lo_method, which I intended to be > > > used to remote it later, though I can see that might be inconvienient to > > > hold on to just so you can remove it later. > > > > > > Thoughts? > > > > It all depends on the reason for removing methods. Is there a scenario > > where someone would want to remove just one method bound to a path+typespec, > > and not all of them? > > In my mind one path maps to one method, cause I like to keep things simple. > > Sure, that certianly seems to be the most common usage pattern. I was > curious to see what peoples programming models are. > > - Steve In RTcmix, which you use in one mode by writing a script in one of several supported languages, we have a user function that creates a stream of data from an OSC specification and lets you store that stream into a variable for use elsewhere. The stream is designed to be a stream of single numbers -- for example, a stream of floats. We provide a way for the user to specify which number they want to pluck out of an OSC message that might contain many items. For example, in a P5 glove driver I've used (p5osc, I think), there is a single path that contains nine or ten pieces of data from the glove. Each RTcmix OSC stream grabs one piece of data. Internally, this is implemented by having a separate callback for each piece of data, requiring that we make use of the Apache-inspired ability described by Steve above (letting a single message be matched by multiple methods). We do this because of the design of RTcmix's control streams, which I won't go into here. I could argue that the design of this glove driver is wrong, and that it should have a separate path for each piece of data. But since it exists, I want to support it (and other such things). So please don't remove this multiple-method feature! ;-) As far as the lo_server_thread_del_method, we don't use it. But I can see how someone might want to remove just one of several methods that match the same path/type combination. Perhaps there could be an additional function that removes a method based on the lo_method returned by lo_server_thread_add_method(), as Steve suggested. Thanks! -John ------------------------------------------------------------ John Gibson Assistant Director, Center for Electronic and Computer Music Indiana University Jacobs School of Music Bloomington, IN 47401 www.john-gibson.com |