public HeartbeatMonitor(KnxConnection connection, IKnxEvents knxEvents)
        {
            this.connection = connection;
            _knxEvents      = knxEvents;

            _timer = new Timer(50 * 1000);
        }
Ejemplo n.º 2
0
 protected KnxReceiver(KnxConnection connection)
 {
     Connection = connection;
 }
Ejemplo n.º 3
0
        public HeartbeatMonitor(KnxConnection connection)
        {
            this.connection = connection;

            _timer = new Timer(50 * 1000);
        }
Ejemplo n.º 4
0
 protected KnxSender(KnxConnection connection)
 {
     Connection = connection;
 }