azell / quasar-firebase

Firebase bindings for Quasar

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

quasar-firebase

Firebase bindings for Quasar e.g. transforms of the asynchronous Firebase Java APIs to fiber-blocking operations. Example to fetch a single value event:

DataSnapshot snap = QuasarUtil.INSTANCE.run(new ValueEventListenerAsync() {
  @Override
  protected void requestAsync() {
    ref.child(id).addListenerForSingleValueEvent(this);
  }
});

See the unit tests for typical usage.

About

Firebase bindings for Quasar

License:Eclipse Public License 1.0


Languages

Language:Java 100.0%