I am new to Spring webflux as well as protobuf. I have been reading some stuff and I have found some similarities between them. Like
- Spring webflux could be deployed over netty so does gRPC.
- Both work good for streaming data.
- Both these frameworks are somewhat based on Observer design pattern, supporting even based data processing approach.
However, still I am not able to find any example out there which combines the power of webflux (reactive programming), gRPC (faster data coding and decoding) and Spring (dependency injection). Are those not compatible?