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
コード例 #1
0
ファイル: ClientTest.cs プロジェクト: residuum/JackSharp
 public virtual void BufferSize()
 {
     using (Processor client = new Processor ("testing")) {
         client.Start ();
         Assert.IsTrue (client.BufferSize > 0);
         client.Stop ();
     }
 }
コード例 #2
0
ファイル: ClientTest.cs プロジェクト: residuum/JackSharp
 public virtual void ChangeNameFormat()
 {
     using (Controller controller = new Controller ("testController"))
     using (Processor client = new Processor ("testClient", 1)) {
         client.PortNameFormat = "my_{direction}-{type}_{index}";
         client.Start ();
         Thread.Sleep (100);
         Assert.AreEqual ("my_in-audio_1", client.AudioInPorts.First ().Name);
         client.Stop ();
         controller.Stop ();
     }
 }
コード例 #3
0
ファイル: ServerStartTest.cs プロジェクト: residuum/JackSharp
 public virtual void ShutdownEvent()
 {
     using (Controller controller = new Controller ("testController"))
     using (Processor client = new Processor ("TestClient", 2, 2)) {
         ShutdownReceiver receiver = new ShutdownReceiver ();
         controller.Start (true);
         client.Shutdown += receiver.OnShutdown;
         client.Start ();
         Thread.Sleep (100);
         controller.Stop ();
         Thread.Sleep (100);
         Assert.AreEqual (1, receiver.Shutdowns);
     }
 }
コード例 #4
0
ファイル: ClientTest.cs プロジェクト: residuum/JackSharp
 public virtual void AutoConnect()
 {
     using (Controller controller = new Controller ("testController"))
     using (Processor client = new Processor ("testClient", 2, 2, 0, 0, true)) {
         ControllerReceiver receiver = new ControllerReceiver ();
         controller.ConnectionChanged += receiver.ConnectionChanged;
         controller.Start ();
         Thread.Sleep (100);
         int connectionsWithoutClient = receiver.ConnectionsFound;
         client.Start ();
         Thread.Sleep (100);
         Assert.AreNotEqual (connectionsWithoutClient, receiver.ConnectionsFound);
         client.Stop ();
         controller.Stop ();
     }
 }
コード例 #5
0
ファイル: ClientTest.cs プロジェクト: residuum/JackSharp
 public virtual void DoubleStart()
 {
     using (Processor client = new Processor ("testing")) {
         Assert.IsTrue (client.Start ());
         Assert.IsFalse (client.Start ());
     }
 }
コード例 #6
0
ファイル: ClientTest.cs プロジェクト: residuum/JackSharp
 public virtual void DefaultNameFormat()
 {
     using (Controller controller = new Controller ("testController"))
     using (Processor client = new Processor ("testClient", 1)) {
         client.Start ();
         Thread.Sleep (100);
         Assert.AreEqual ("audioin_1", client.AudioInPorts.First ().Name);
         client.Stop ();
         controller.Stop ();
     }
 }
コード例 #7
0
ファイル: ClientTest.cs プロジェクト: residuum/JackSharp
 public virtual void Stop()
 {
     using (Processor client = new Processor ("testing")) {
         client.Start ();
         Assert.IsTrue (client.Stop ());
     }
 }
コード例 #8
0
ファイル: ClientTest.cs プロジェクト: residuum/JackSharp
 public virtual void StartAfterStopped()
 {
     using (Processor client = new Processor ("testing", 1)) {
         ClientReceiver receiver = new ClientReceiver ();
         client.ProcessFunc += receiver.ChannelCounterAction;
         Assert.IsTrue (client.Start ());
         client.Stop ();
         Assert.IsTrue (client.Start ());
         Assert.AreEqual (1, client.AudioInPorts.Count ());
         Thread.Sleep (100);
         Assert.AreEqual (1, receiver.Called);
     }
 }
コード例 #9
0
ファイル: ClientTest.cs プロジェクト: residuum/JackSharp
 public virtual void SampleRate()
 {
     using (Processor client = new Processor ("testing")) {
         client.Start ();
         Assert.IsTrue (client.SampleRate == 44100 || client.SampleRate == 48000);
         client.Stop ();
     }
 }