Esempio n. 1
0
 public void Update(bool force)
 {
     if (force || IsReady)
     {
         CollectionReady?.Invoke(this, new CollectionReadyEventArgs());
     }
 }
Esempio n. 2
0
 internal void Ready()
 {
     IsReady = true;
     CollectionReady?.Invoke(this, new CollectionReadyEventArgs {
         JustReady = true
     });
 }
Esempio n. 3
0
 public void Update()
 {
     if (!IsReady)
     {
         return;
     }
     CollectionReady?.Invoke(this, new EventArgs());
 }