0.1.4 • Published 11 years ago

chainable v0.1.4

Weekly downloads
2
License
-
Repository
-
Last release
11 years ago

chainable

Create fluent asynchronous APIs.

Usage

Extend the Chainable class and use the chainable combinator to designate asynchronous methods as being chainable. Methods wrapped with the chainable combinator will be treated as chainable when they are not passed a callback. Each method in the chain will be executed in series, passing it's result to the next method. Pass a callback to the final method to end the chain and begin computation.

Example

chainable = require 'chainable'

class Calculator extends chainable
  numbers: []

  number: chainable (number, callback) ->
    @numbers.push number
    callback null

  add: chainable (callback) ->
    result = 0
    while n = @numbers.pop()
      result += n

    callback null, result

  wait: chainable (callback) ->
    setTimeout ->
      callback null
    , 100

test = new Test()
test.number(4)
    .number(5)
    .wait()
    .add (err, result) ->
        # result == 9
0.1.4

11 years ago

0.1.3

12 years ago

0.1.2

12 years ago

0.1.1

13 years ago

0.1.0

13 years ago