Beispiel #1
0
    private void NotifyListeners()
    {
        Notify notify = new Notify(EVENT_POS_CHANGE, DRIVER_ID, instanceId);

        notify.AddParameter("latitude", pos.latitude);
        notify.AddParameter("longitude", pos.longitude);
        notify.AddParameter("delta", pos.delta);

        foreach (var device in listeners.Values)
        {
            gateway.Notify(notify, device);
        }
    }