JackSharp.Processor.Start C# (CSharp) Method

Start() public method

Activates the client and connects to Jack.
public Start ( bool startServer = false ) : bool
startServer bool If [true], the client will start Jack if it is not running.
return bool
        public new bool Start(bool startServer = false)
        {
            if (!base.Start (startServer)) {
                return false;
            }
            if (_autoconnect) {
                AutoConnectPorts ();
            }
            return true;
        }

Usage Example

Example #1
0
 public virtual void BufferSize()
 {
     using (Processor client = new Processor ("testing")) {
         client.Start ();
         Assert.IsTrue (client.BufferSize > 0);
         client.Stop ();
     }
 }
All Usage Examples Of JackSharp.Processor::Start