JackSharp.Processor.Stop C# (CSharp) Méthode

Stop() public méthode

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

Usage Example

Exemple #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