Sha256: b4fa86a205a492d251e5140e74770866c3f600782c110d0c2f0c6e577ee764ee
Contents?: true
Size: 731 Bytes
Versions: 11
Compression:
Stored size: 731 Bytes
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2010 Sprout Systems, Inc. and contributors. // Portions ©2008-2010 Apple Inc. All rights reserved. // License: Licensed under MIT license (see license.js) // ========================================================================== /** Represents a single task which can be run by a task queue. Note that tasks are actually allowed to add themselves back onto the queue if they did not/ might not finish. */ SC.Task = SC.Object.extend({ run: function(queue) { // if needed, you could put the task back on the queue for later finishing. } });
Version data entries
11 entries across 11 versions & 1 rubygems