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

Version Path
spade-0.0.1 sproutcore/frameworks/foundation/tasks/task.js
sproutcore-1.5.0.pre.5 lib/frameworks/sproutcore/frameworks/foundation/tasks/task.js
sproutcore-1.5.0.pre.4.1 lib/frameworks/sproutcore/frameworks/foundation/tasks/task.js
sproutcore-1.5.0.pre.4 lib/frameworks/sproutcore/frameworks/foundation/tasks/task.js
sproutcore-1.5.0.pre.3 lib/frameworks/sproutcore/frameworks/foundation/tasks/task.js
sproutcore-1.4.5 lib/frameworks/sproutcore/frameworks/foundation/tasks/task.js
sproutcore-1.4.5-java lib/frameworks/sproutcore/frameworks/foundation/tasks/task.js