how save document to MongoDb with com.mongodb.reactivestreams.client
问题 I am trying to insert a document in MongoDb throw reactive driver: com.mongodb.reactivestreams.client According to official guide "... Only when a Publisher is subscribed to and data requested will the operation happen... Once the document has been inserted the onNext method will be called " and provided an example which I tried bellow without success. By debugging I see that onSubscribe is called but onNext bellow is never called and I checked in MongoDb the document isn't inserted also.