Esempio n. 1
0
 /**
  * @param handler {@link AppleMidiCommandHandler} to handle incoming data
  * @param name    The name under which the other peers should see this server
  * @param port    The control port
  */
 RtpMidiControlServer(RtpMidiCommandHandler handler, string name, int port)
 {
     this.handler = handler;
     Port         = port;
     Name         = name;
     handler.RegisterListener(this);
 }