Programmierung in Ruby

Der Leitfaden der Pragmatischen Programmierer

module GC

Index:

disable enable start garbage_collect


Das GC-Modul stellt ein Interface zur Verfügung für Rubys Mark-and-Sweep Garbage-Collection. Einige der hier zugrunde liegenden Methoden sind auch über das ObjectSpace-Modul ansprechbar, beschrieben ab Seite 434.

class methods
disable GC.disable -> true or false

Schaltet die Garbage-Collection ab, liefert true falls sie schon abgeschaltet war.

GC.disable » false
GC.disable » true

enable GC.enable -> true or false

Schaltet die Garbage-Collection an, liefert true, falls sie abgeschaltet war.

GC.disable » false
GC.enable » true
GC.enable » false

start GC.start -> nil

Initiiert die Garbage-Collection, außer sie ist manuell abgeschaltet.

GC.start » nil

instance methods
garbage_collect garbage_collect -> nil

Äquivalent zu GC::start.

include GC
garbage_collect » nil


Extracted from the book "Programming Ruby - The Pragmatic Programmer's Guide"
Übersetzung: Jürgen Katins
Für das englische Original:
© 2000 Addison Wesley Longman, Inc. Released under the terms of the Open Publication License V1.0. That reference is available for download.
Diese Lizenz sowie das Original vom Herbst 2001 bilden die Grundlage der Übersetzung
Es wird darauf hingewiesen, dass sich die Lizenz des englischen Originals inzwischen geändert hat.
Für die deutsche Übersetzung:
© 2002 Jürgen Katins
Der Copyright-Eigner stellt folgende Lizenzen zur Verfügung:
Nicht-freie Lizenz:
This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later (the latest version is presently available at http://www.opencontent.org/openpub/). Distribution of substantively modified versions of this document is prohibited without the explicit permission of the copyright holder. Distribution of the work or derivative of the work in any standard (paper) book form is prohibited unless prior permission is obtained from the copyright holder.
Freie Lizenz:
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with no Invariant Sections, with no Front-Cover Texts, and with no Back-Cover Texts. A copy of the license is included in the section entitled "GNU Free Documentation License".