JackSharp.Processor.Stop C# (CSharp) Method

Stop() public method

Stop this instance and disconnects from Jack.
public Stop ( ) : bool
return bool
        public new bool Stop()
        {
            DisposePorts ();
            return base.Stop ();
        }

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::Stop