I am using the Firebase Admin Java SDK in a server side Spring WebFlux environment. The Firebase SDK provides two methods for each operation. A synchronous ".doOperation()" method which returns a result and a ".doOperationAsync()" method which returns an instance of ApiFuture.
The Javadoc for ApiFuture can be found here.
ApiFuture extends from java.util.concurrent.Future, which is no longer supported by Mono.fromFuture().
Is there a way to convert Googles ApiFuture into a Mono?