You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 17, 2025. It is now read-only.
The library should give a way to construct Firebase call independently from executing them.
That could enable:
keeping static const version of repeated request.
fine grained control over HttpClient instance used to execute request.
overload for testing, portability and debugging
That could be done by adding FirebaseCall::execute(HttpClient&) and having the default constructor call it directly to preserve the easy Firebase.push/get/* flow, while still allowing user to call it manually when constructing FirebasPush/FirebaseGet/* object manually with two step initialization (see #58)
The text was updated successfully, but these errors were encountered:
The library should give a way to construct Firebase call independently from executing them.
That could enable:
That could be done by adding
FirebaseCall::execute(HttpClient&)
and having the default constructor call it directly to preserve the easy Firebase.push/get/* flow, while still allowing user to call it manually when constructing FirebasPush/FirebaseGet/* object manually with two step initialization (see #58)The text was updated successfully, but these errors were encountered: