Package de.sciss.jcollider

Examples of de.sciss.jcollider.Bus.free()


  public void oscCmd_freeBus( RoutedOSCMessage rom )
  {
    try {
      final Bus b = (Bus) mapOSCBusses.remove( rom.msg.getArg( 1 ));
      if( b != null ) {
        b.free();
      } else {
        OSCRoot.failed( rom.msg, OSCRoot.getResourceString( "errOSCBusNotFound" ));
      }
    }
    catch( IndexOutOfBoundsException e1 ) {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.