GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
AnyEvent::CouchDB::Stream(3) User Contributed Perl Documentation AnyEvent::CouchDB::Stream(3)

AnyEvent::CouchDB::Stream - Watch changes from a CouchDB database.

  use AnyEvent::CouchDB::Stream;
  my $listener = AnyEvent::CouchDB::Stream->new(
      url       => 'http://localhost:5984',
      database  => 'test',
      on_change => sub {
          my $change = shift;
          warn "document $change->{_id} updated";
      },
      on_keepalive => sub {
          warn "ping\n";
      },
      timeout => 1,
  );

AnyEvent::CouchDB::Stream is an interface to the CouchDB changes database API.

url
URL of the CouchDB host.
database
Name of the CouchDB database.
timeout
Number of seconds to wait before timing out. On timeout, The on_error code ref will be called with an argument of 'timeout'.
filter
Name of the filter to execute on this notifier.
since
Number to fetch changes from. Defaults to 1.
on_change
A code ref to execute when a change notification is received. It is mandatory.
on_keepalive
A code ref to execute when keepalive is called.
on_error
A code ref to execute on error. Code ref is passed the error message.
on_eof
A code ref to execute on eof
headers
An optional hashref of headers that should be used for the HTTP request. Defaults to " { 'Content-Type' =" 'application/json' } >.
heartbeat
The interval in milliseconds between newlines sent from the server to ensure that an open connection is still being maintained

franck cuny <franck.cuny@linkfluence.net>

AnyEvent::HTTP, AnyEvent::CouchDB, AnyEvent::Twitter::Stream, <http://books.couchdb.org/relax/reference/change-notifications>

Copyright 2010 by Linkfluence

<http://linkfluence.net>

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

2012-07-26 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.