Ejemplo n.º 1
0
 public override void Execute(SyncExecutionContext context, SyncClient client)
 {
     if (client == null)
     {
         return;
     }
     client.SendMessage(new SyncPongMessage());
 }
Ejemplo n.º 2
0
 public void KillConnection()
 {
     if (Server && _server != null)
     {
         _server.Stop();
         _server = null;
     }
     else if (!Server && _client != null)
     {
         _client.Stop();
         _client = null;
     }
 }
Ejemplo n.º 3
0
 private void buttonStart_Click(object sender, EventArgs e)
 {
     KillConnection();
     if (Server)
     {
         _server = new SyncServer(_context);
         _server.Start();
     }
     else
     {
         _client = new SyncClient(_context, textBox1.Text);
         _client.Start();
         Properties.Settings.Default.ServerIP = textBox1.Text;
         Properties.Settings.Default.Save();
     }
     UpdateVisibility();
 }
Ejemplo n.º 4
0
 public override void Execute(SyncExecutionContext context, SyncClient client)
 {
     context.Log("Attempting to sync play file: " + FileName);
     context.AttemptPlayFile(FileName);
 }
Ejemplo n.º 5
0
 public override void Execute(SyncExecutionContext context, SyncClient client)
 {
     context.SetPlayState(PlayState);
     context.SetPlayPosition(PlayPosition);
     context.Log("Synced player state");
 }
Ejemplo n.º 6
0
 public abstract void Execute(SyncExecutionContext context, SyncClient client);
Ejemplo n.º 7
0
 private void buttonStart_Click(object sender, EventArgs e)
 {
     KillConnection();
     if(Server)
     {
         _server = new SyncServer(_context);
         _server.Start();
     }
     else
     {
         _client = new SyncClient(_context, textBox1.Text);
         _client.Start();
         Properties.Settings.Default.ServerIP = textBox1.Text;
         Properties.Settings.Default.Save();
     }
     UpdateVisibility();
 }
Ejemplo n.º 8
0
 public void KillConnection()
 {
     if (Server && _server != null)
     {
         _server.Stop();
         _server = null;
     }
     else if (!Server && _client != null)
     {
         _client.Stop();
         _client = null;
     }
 }