Mahmoud El-Naggar
Mahmoud El-Naggar
@BlackGoblin no you don't see this method ``` public Repository getRepository(Supplier supplier) { return Repositories .repositoryWithInitialValue(Result.absent()) .observe() .onUpdatesPerLoop() .goTo(Executors.newSingleThreadExecutor()) .attemptGetFrom(supplier) .orEnd(Result::failure) .thenTransform(Result::success) .compile(); } ```
OK thanks can you tell me if any library can take objects as parameters
@AndrieDuma that's what I did to solve it, Thanks for your suggestion also I found that I can pass json array but I need to use eval(params) in my JavaScript...