A Koufatzis

Results 16 comments of A Koufatzis

I saw that you can bypass the package private without needing to rely on reflection using this trick shown at this link http://fedepaol.github.io/blog/2015/09/13/testing-rxjava-observables-subscriptions/ . This guy just creates a class...

@ch8n Thank you for your interest but as it is a side project for me, I think I prefer to implement this myself to learn more about it. But of...

Hello. Is it possible to use this Mongoose Plugin for aggregate pagination?

@andrejpetras Is it possible to integrate the changes back into this repository ?

@marcingrzejszczak To be honest I don't know exactly. I don't use Observation directly but I am using the Reactor Coroutine library like the following: ``` return mono { val text...

@marcingrzejszczak @shakuzen The behaviour is very strange. I did some tests and I found the following: ``` @GetMapping("/") suspend fun index(): String { logger.error("Greetings") mono { "test" }.awaitSingle() logger.error("Spring Boot!")...

@marcingrzejszczak @vooft What does this mean that the library cannot be used in conjunction with Kotlin Coroutines + Reactor?

@marcingrzejszczak Do we have any update on this or a suggestion for a temporary workaround on our side? Thank you

Hello to all. I have created the following helper (still hacky code, will improve it later) ` suspend fun Logger.debugAsync(message: String) { Mono.just(Unit).handle { t, u -> error(message) u.next(t) }.awaitSingleOrNull()...

@codependent Yes unfortunately my solution has a downside to adapt every log statement or at least the important ones like debug, error needed for log correlation when debugging. But I...