Sha256: 2683a8156f82a8bd2338d2cbce06c2066f63c3a040c9940f18e16cf871840307
Contents?: true
Size: 616 Bytes
Versions: 19
Compression:
Stored size: 616 Bytes
Contents
/** * Memory * * A class with a few memory-management methods, as much as * such a thing exists in a Flash player. * Copyright (c) 2007 Henri Torgemane * * See LICENSE.txt for full license information. */ package com.hurlant.util { import flash.net.LocalConnection; import flash.system.System; public class Memory { public static function gc():void { // force a GC try { new LocalConnection().connect('foo'); new LocalConnection().connect('foo'); } catch (e:*) {} } public static function get used():uint { return System.totalMemory; } } }
Version data entries
19 entries across 19 versions & 4 rubygems