Skip to content

Instantly share code, notes, and snippets.

@nisbus
Created June 7, 2014 00:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nisbus/1f524f6279319b8e356b to your computer and use it in GitHub Desktop.
Save nisbus/1f524f6279319b8e356b to your computer and use it in GitHub Desktop.
public void TestChanges()
{
var session = new CloudantSession("https://user.cloudant.com");
session.Changes<dynamic>("some_db", FeedType.longpoll, include_docs: true).Subscribe(doc =>
{
Console.WriteLine(doc);
},
(e) => Console.WriteLine("Error "+e));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment