aboutsummaryrefslogtreecommitdiffstats
path: root/signaling-server/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/Memory.as
diff options
context:
space:
mode:
Diffstat (limited to 'signaling-server/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/Memory.as')
-rwxr-xr-xsignaling-server/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/Memory.as28
1 files changed, 28 insertions, 0 deletions
diff --git a/signaling-server/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/Memory.as b/signaling-server/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/Memory.as
new file mode 100755
index 0000000..688e1bc
--- /dev/null
+++ b/signaling-server/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/Memory.as
@@ -0,0 +1,28 @@
+/**
+ * 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;
+ }
+ }
+} \ No newline at end of file