Coder Social home page Coder Social logo

reactor-data's Introduction

Reactor Data

This is an early draft of enabling Reactor's Composable to provide asynchronous data access even if the underlying datastore access is fully-blocking.

Build Status

Spring Data Repositories

This submodule provides an interface similar to Spring Data's CrudRepository but replaces references to domain objects with references to Composable<DomainObject>. This gives you a chainable, composable data API that doesn't block the caller while waiting on data (it uses a background IO thread instead).

Given a domain object called Person, and a Spring Data Repository to manage it, you just have to declare a subclass of ComposableCrudRepository and you will get a fluent composable API that lets you do map, filter, and other composable actions like the following silly example:

@Inject
ComposablePersonRepository people;

Composable<String> fullName = people.findOne(personId).map(new Function<Person, String>() {
  public String apply(Person p) {
    return p.getFirstName() + " " + p.getLastName();
  }
});

You can block if you want by calling Composable's await(long timeout, TimeUnit unit) method. Or you can do a non-blocking call to get() (Composable<T>s are also Supplier<T>s).

String s = fullName.await(5, TimeUnit.SECONDS); // block caller for 5 seconds

reactor-data's People

Contributors

jbrisbin avatar wilkinsona avatar smaldini avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.