On Wed, Jul 29, 2009 at 11:52 AM, Scott Wilson
<s.d.wilson.1@xxxxxxxxxx> wrote:
Isn't sendsSignalTo effectively just a synonym for moveAfter then?
moveAfter is not persistent, but sendsSignalTo would be.
b.moveAfter(a);
a.moveToTail(s); // now b is before a and we have no way to repair it automatically
but...
b.receivesSignalFrom(a); // (the reverse method for mixerchannel)
a.moveToTail(s); // order is broken
Node.reorder; // hypothetical method that would fix the node ordering