Janitor
This is an external class which can be referenced with MapLib:GetFeature("Cleanup").Janitor
Janitor is destructor based class designed to assist with clearing up connections and events.
warning
WARNING! This is an advanced feature.
This page assumes you are familiar, comfortable and can write Luau code.
Functions
new
Janitor.
new
(
name:
string?
) →
(
)
Constructs a new Janitor class and is cached for later use. Janitor provides an option in case you want to name your Janitor for easier reference later.
isJanitor
Janitor.
isJanitor
(
) →
boolean
Returns true if the given class is a Janitor, if not it returns false.
Give
Janitor:
Give
(
task:
any
) →
nil
Example:
local janitor = MapLib:GetFeature("Cleanup").Janitor.new() -- Constructs new Janitor
local part = Instance.new("Part")
part.Anchored = true
part.Size = Vector3.new(1, 1, 1)
part.Parent = workspace
janitor:Give(part)
task.wait(5)
janitor:Cleanup() -- Destroys the part
This method is used to give Janitor tasks to cleanup, these tasks can be anything, some examples include, functions, threads, coroutines or anything with a .Destroy function.
tip
Janitor allows for tables to be given in as an argument. If Janitor detects a table it will loop through the table and add anything it finds will be added to the tasks table.
local janitor = MapLib:GetFeature("Cleanup").Janitor.new() -- Constructs new Janitor
local connection1 = RunService.Heartbeat:Connect(function()
print("Running")
end)
local connection2 = RunService.Heartbeat:Connect(function()
print("Running")
end)
janitor:Give({connection1, connection2})
task.wait(5)
janitor:Cleanup() -- Destroys both connections
caution
Janitor does not have the ability to completly clear references if they are defined to a variable.
To initate proper garbage collection using Janitor we recommend setting the variable to reference = janitor:Give(task)
which will set the reference to nil.
local janitor = MapLib:GetFeature("Cleanup").Janitor.new() -- Constructs new Janitor
local part = Instance.new("Part")
part.Anchored = true
part.Size = Vector3.new(1, 1, 1)
part.Parent = workspace
part = janitor:Give(part)
--Since :Give returns nil we can lose the reference and initate proper garbage collection.
task.wait(5)
janitor:Cleanup() -- Destroys the part and initates garbage collection
Cleanup
Janitor:
Cleanup
(
) →
nil
Calls for the Janitor to cleanup up all the tasks it was given.
Destroy
Janitor:
Destroy
(
) →
nil
Completely destroys Janitor and all references to it. If the Janitor has tasks then those tasks are cleaned up.