enum Gio::MemoryMonitorWarningLevel

Overview

Memory availability warning levels.

Note that because new values might be added, it is recommended that applications check #GMemoryMonitorWarningLevel as ranges, for example: |[ if (warning_level > G_MEMORY_MONITOR_WARNING_LEVEL_LOW) drop_caches (); ]|

Defined in:

lib/gi-crystal/src/auto/gio-2.0/gio.cr

Enum Members

Low = 50_u32

Memory on the device is low, processes should free up unneeded resources (for example, in-memory caches) so they can be used elsewhere.

Medium = 100_u32

Same as G_MEMORY_MONITOR_WARNING_LEVEL_LOW but the device has even less free memory, so processes should try harder to free up unneeded resources. If your process does not need to stay running, it is a good time for it to quit.

Critical = 255_u32

The system will soon start terminating processes to reclaim memory, including background processes.

Class Method Summary

Instance Method Summary

Class methods inherited from struct Enum

g_type : UInt64 g_type

Class Method Detail

def self.g_type : UInt64 #

Returns the type id (GType) registered in GLib type system.


[View source]

Instance Method Detail

def critical? #

[View source]
def low? #

[View source]
def medium? #

[View source]