Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Latest commit

 

History

History
13 lines (11 loc) · 411 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 411 Bytes

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.