Home

Class goog.gears.LoggerServer

Creates an object that listens to incoming LOG commands and forwards them to a goog.debug.Logger

extends goog.Disposable
Instance Method Summary
disposeInternal()

Deletes or nulls out any references to COM objects, DOM nodes, or other disposable objects. Classes that extend {@code goog.Disposable} should override this method. Not reentrant. To avoid calling it twice, it must only be called from the subclass' {@code disposeInternal} method. Everywhere else the public {@code dispose} method must be used. For example:

mypackage.MyClass = function() {
goog.base(this);
// Constructor logic specific to MyClass.
...
};
goog.inherits(mypackage.MyClass, goog.Disposable);

mypackage.MyClass.prototype.disposeInternal = function() {
goog.base(this, 'disposeInternal');
// Dispose logic specific to MyClass.
...
};

getUseMessagePrefix() ⇒ boolean
onCommand_(?goog.gears.WorkerEvent e)

Event handler for the command event of the thread.

setUseMessagePrefix(boolean b)

Whether to prefix the message text with the worker ID.