Is it possible to access the first argument of the operators down the line? I'm trying to preserve the value using the zip operator but I haven't managed to do it. Thanks for the help
.concatMap(this::getDeviceStatus)
.concatMap(this::getCertificateResponse)
.concatMap(deviceCertificateResponse ->
CertificateGenerator.generateCert(deviceCertificateResponse))
.concatMap(aBoolean -> CrlGenerator.observableCrlGenerator(aBoolean,getCertificateResponse )) // <- I want to use the first argument again in the last concat map