Skip to content

Instantly share code, notes, and snippets.

@ingenthr
Last active October 6, 2015 02:54
Show Gist options
  • Save ingenthr/40a61c54efb20338c976 to your computer and use it in GitHub Desktop.
Save ingenthr/40a61c54efb20338c976 to your computer and use it in GitHub Desktop.
// Read
Observable loadedFromId = bucket.get("id"); // async using RxJava
JsonDocument found = bucket.get("notexisting").toBlocking().singleOrDefault(null); // sync
// Write
JsonDocument found = bucket.get("notexisting").toBlocking().singleOrDefault(null); //
// Query
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment