Example #1
0
        public void UpdateGeo(ClusterGeometry geo)
        {
            lock (GeoLocker)
                Geometry = geo;

            lock (StatusLocker)
                Status = Statuses.GeometryCreated;

            ClusterGeoRefresh?.Invoke(this, this);
        }
Example #2
0
        public void RequestBinding()
        {
            lock (StatusLocker)
            {
                if (NeedBinding)
                {
                    return;
                }

                NeedBinding = true;
                ClusterGeoRefresh?.Invoke(this, this);
            }
        }