Sha256: eecc922ae54f7ebb3ab592bfd34acc07abcd342296c10f4f170054a569cb61b7

Contents?: true

Size: 1.16 KB

Versions: 6

Compression:

Stored size: 1.16 KB

Contents

// The changes_couchdb API
//
// Copyright 2011 Iris Couch
//
//    Licensed under the Apache License, Version 2.0 (the "License");
//    you may not use this file except in compliance with the License.
//    You may obtain a copy of the License at
//
//        http://www.apache.org/licenses/LICENSE-2.0
//
//    Unless required by applicable law or agreed to in writing, software
//    distributed under the License is distributed on an "AS IS" BASIS,
//    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//    See the License for the specific language governing permissions and
//    limitations under the License.

var feed = require('./lib/feed')
  , stream = require('./lib/stream')

function follow_feed(opts, cb) {
  var ch_feed = new feed.Feed(opts);
  ch_feed.on('error' , function(er) { return cb && cb.call(ch_feed, er) });
  ch_feed.on('change', function(ch) { return cb && cb.call(ch_feed, null, ch) });

  // Give the caller a chance to hook into any events.
  process.nextTick(function() {
    ch_feed.follow();
  })

  return ch_feed;
}

module.exports = follow_feed;
module.exports.Feed = feed.Feed;
module.exports.Changes = stream.Changes

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
vulcan-0.8.2 server/node_modules/cradle/node_modules/follow/api.js
vulcan-0.8.1 server/node_modules/cradle/node_modules/follow/api.js
vulcan-0.8.0 server/node_modules/cradle/node_modules/follow/api.js
vulcan-0.7.2 server/node_modules/cradle/node_modules/follow/api.js
vulcan-0.7.1 server/node_modules/cradle/node_modules/follow/api.js
vulcan-0.7.0 server/node_modules/cradle/node_modules/follow/api.js