QueuedInstance
A QueuedInstance is a class used within the Pool class. The class stores the Instance it's meant to represent and multiple properties, methods and events
Properties
Instance
Instance
The instance that's referenced when a QueuedInstance created
nil
Active
Boolean
Whether or not t he QueuedInstance is loaded
false
_Pool
Table
Refers to the table that contains the QueuedInstance
nil
Methods
:Load()
Chainable
Loads the QueuedInstance into the game. If the instance is already loaded, reloads it instead
:Unload()
Chainable
Unloads the QueuedInstance if loaded
:Destroy()
Destroys the QueuedInstance
Events
Events that can be connected to via :Connect() :Once() and :Wait()
.StateChanged
Fires when the Active property of the QueuedInstance is changed
.Loaded
Fires when the QueuedInstance is loaded via :Load() or via Pool:LoadItem()
.Unloaded
Fires when AFTER the QueuedInstance is unloaded via :Unload()
.Destroying
Fires when the QueuedInstance is getting destroyed via :Destroy()
.OnUnloading
Yieding
Fires BEFORE the QueuedInstance is unloaded via :Unload(). If any functions are connected to this event, the code will wait up to 1.5 seconds for them to complete
Last updated