Sha256: 7ff2756fe5e22468a4da2ae3e06bd7f8b52abd0fb3ccee2f52d07c6816cb70ad
Contents?: true
Size: 722 Bytes
Versions: 41
Compression:
Stored size: 722 Bytes
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2011 Strobe Inc. and contributors. // Portions ©2008-2011 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
41 entries across 41 versions & 1 rubygems