Sha256: af75196f1e21c9240c5a6d2dd38e921afaa81cf34470630f32216a73cacb54d3
Contents?: true
Size: 722 Bytes
Versions: 7
Compression:
Stored size: 722 Bytes
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2011 Strobe 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
7 entries across 7 versions & 2 rubygems