Exemple #1
0
 public override void CollectGarbage(ScriptGCType type)
 {
     if (activeScriptGarbageCollector != null)
     {
         activeScriptGarbageCollector.CollectGarbage(type);
     }
 }
Exemple #2
0
 /// <summary>
 /// Starts a garbage collection
 /// </summary>
 /// <param name="type">The type of garbage collection</param>
 private void InnerCollectGarbage(ScriptGCType type)
 {
     if (_activeScriptGarbageCollector != null)
     {
         _activeScriptGarbageCollector.CollectGarbage(type);
     }
 }
Exemple #3
0
 /// <summary>
 /// The Active Script host calls this method to start garbage collection
 /// </summary>
 /// <param name="type">The type of garbage collection</param>
 public void CollectGarbage(ScriptGCType type)
 {
     if (_activeScriptGarbageCollector != null)
     {
         _activeScriptGarbageCollector.CollectGarbage(type);
     }
 }
Exemple #4
0
 public override void CollectGarbage(ScriptGCType type)
 {
     if (activeScriptGarbageCollector != null)
     {
         activeScriptGarbageCollector.CollectGarbage(type);
     }
 }
Exemple #5
0
 public abstract void CollectGarbage(ScriptGCType type);
Exemple #6
0
 public abstract void CollectGarbage(ScriptGCType type);
 public override void CollectGarbage(ScriptGCType type)
 {
     activeScriptGarbageCollector?.CollectGarbage(type);
 }
 /// <summary>
 /// Starts a garbage collection
 /// </summary>
 /// <param name="type">The type of garbage collection</param>
 private void InnerCollectGarbage(ScriptGCType type)
 {
     _activeScriptWrapper.CollectGarbage(type);
 }