Files
GS13NG/datum/qdel_item.html
2025-02-05 06:19:18 +00:00

1 line
7.5 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../"><link rel="stylesheet" href="dmdoc.css"><title>/datum/qdel_item - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a><a href="datum/qdel_item.html#var">Var Details</a></header><main><h1>qdel_item <aside>/<a href="datum.html">datum</a>/<a href="datum/qdel_item.html">qdel_item</a></aside> <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/controllers/subsystem/garbage.dm#L297"><img src="git.png" width="16" height="16" title="code/controllers/subsystem/garbage.dm 297"></a></h1><p>Qdel Item: Holds statistics on each type that passes thru qdel</p><table class="summary" cellspacing="0"><tr><td colspan="2"><h2>Vars</h2></td></tr><tr><th><a href="datum/qdel_item.html#var/destroy_time">destroy_time</a></th><td>Total amount of milliseconds spent processing this type's Destroy()</td></tr><tr><th><a href="datum/qdel_item.html#var/failures">failures</a></th><td>Times it was queued for soft deletion but failed to soft delete.</td></tr><tr><th><a href="datum/qdel_item.html#var/hard_delete_max">hard_delete_max</a></th><td>Highest time spent hard_deleting this in ms.</td></tr><tr><th><a href="datum/qdel_item.html#var/hard_delete_time">hard_delete_time</a></th><td>Total amount of milliseconds spent hard deleting this type.</td></tr><tr><th><a href="datum/qdel_item.html#var/hard_deletes">hard_deletes</a></th><td>Different from failures because it also includes QDEL_HINT_HARDDEL deletions</td></tr><tr><th><a href="datum/qdel_item.html#var/hard_deletes_over_threshold">hard_deletes_over_threshold</a></th><td>Number of times hard deletes took longer than the configured threshold</td></tr><tr><th><a href="datum/qdel_item.html#var/name">name</a></th><td>Holds the type as a string for this type</td></tr><tr><th><a href="datum/qdel_item.html#var/no_hint">no_hint</a></th><td>Number of times it's not even bother to give a qdel hint</td></tr><tr><th><a href="datum/qdel_item.html#var/no_respect_force">no_respect_force</a></th><td>Number of times it's not respected force=TRUE</td></tr><tr><th><a href="datum/qdel_item.html#var/qdel_flags">qdel_flags</a></th><td>Flags related to this type's trip thru qdel.</td></tr><tr><th><a href="datum/qdel_item.html#var/qdels">qdels</a></th><td>Total number of times it's passed thru qdel.</td></tr><tr><th><a href="datum/qdel_item.html#var/slept_destroy">slept_destroy</a></th><td>Number of times it's slept in its destroy</td></tr></table><h2 id="var">Var Details</h2><h3 id="var/destroy_time"><aside class="declaration">var </aside>destroy_time <aside> </aside> <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/controllers/subsystem/garbage.dm#L300"><img src="git.png" width="16" height="16" title="code/controllers/subsystem/garbage.dm 300"></a></h3><p>Total amount of milliseconds spent processing this type's Destroy()</p><h3 id="var/failures"><aside class="declaration">var </aside>failures <aside> </aside> <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/controllers/subsystem/garbage.dm#L301"><img src="git.png" width="16" height="16" title="code/controllers/subsystem/garbage.dm 301"></a></h3><p>Times it was queued for soft deletion but failed to soft delete.</p><h3 id="var/hard_delete_max"><aside class="declaration">var </aside>hard_delete_max <aside> </aside> <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/controllers/subsystem/garbage.dm#L304"><img src="git.png" width="16" height="16" title="code/controllers/subsystem/garbage.dm 304"></a></h3><p>Highest time spent hard_deleting this in ms.</p><h3 id="var/hard_delete_time"><aside class="declaration">var </aside>hard_delete_time <aside> </aside> <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/controllers/subsystem/garbage.dm#L303"><img src="git.png" width="16" height="16" title="code/controllers/subsystem/garbage.dm 303"></a></h3><p>Total amount of milliseconds spent hard deleting this type.</p><h3 id="var/hard_deletes"><aside class="declaration">var </aside>hard_deletes <aside> </aside> <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/controllers/subsystem/garbage.dm#L302"><img src="git.png" width="16" height="16" title="code/controllers/subsystem/garbage.dm 302"></a></h3><p>Different from failures because it also includes QDEL_HINT_HARDDEL deletions</p><h3 id="var/hard_deletes_over_threshold"><aside class="declaration">var </aside>hard_deletes_over_threshold <aside> </aside> <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/controllers/subsystem/garbage.dm#L305"><img src="git.png" width="16" height="16" title="code/controllers/subsystem/garbage.dm 305"></a></h3><p>Number of times hard deletes took longer than the configured threshold</p><h3 id="var/name"><aside class="declaration">var </aside>name <aside> </aside> <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/controllers/subsystem/garbage.dm#L298"><img src="git.png" width="16" height="16" title="code/controllers/subsystem/garbage.dm 298"></a></h3><p>Holds the type as a string for this type</p><h3 id="var/no_hint"><aside class="declaration">var </aside>no_hint <aside> </aside> <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/controllers/subsystem/garbage.dm#L307"><img src="git.png" width="16" height="16" title="code/controllers/subsystem/garbage.dm 307"></a></h3><p>Number of times it's not even bother to give a qdel hint</p><h3 id="var/no_respect_force"><aside class="declaration">var </aside>no_respect_force <aside> </aside> <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/controllers/subsystem/garbage.dm#L306"><img src="git.png" width="16" height="16" title="code/controllers/subsystem/garbage.dm 306"></a></h3><p>Number of times it's not respected force=TRUE</p><h3 id="var/qdel_flags"><aside class="declaration">var </aside>qdel_flags <aside> </aside> <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/controllers/subsystem/garbage.dm#L309"><img src="git.png" width="16" height="16" title="code/controllers/subsystem/garbage.dm 309"></a></h3><p>Flags related to this type's trip thru qdel.</p><h3 id="var/qdels"><aside class="declaration">var </aside>qdels <aside> </aside> <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/controllers/subsystem/garbage.dm#L299"><img src="git.png" width="16" height="16" title="code/controllers/subsystem/garbage.dm 299"></a></h3><p>Total number of times it's passed thru qdel.</p><h3 id="var/slept_destroy"><aside class="declaration">var </aside>slept_destroy <aside> </aside> <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/controllers/subsystem/garbage.dm#L308"><img src="git.png" width="16" height="16" title="code/controllers/subsystem/garbage.dm 308"></a></h3><p>Number of times it's slept in its destroy</p></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.0</a></footer></body></html>