Martin Mauch

Results 253 comments of Martin Mauch

You might be able to compile Scala to Java bytecode and then decompile it using a Java decompiler. The code quality wouldn't be too good though...

The `ActorsSpec` now runs successfully in both JVM and JS :+1:

@mtsokol I'm running into quite a bit of trouble in `zio-actors-persistence` because `zio-config` is embedded quite deeply in the process of constructing a `Journal`. Right now I'm trying to do...

One conceptually nice solution for this use case might be to allow the response to be a `zio.stream.Stream[Nothing, TransitionResponse]`. One could add something like this to the [part of the...

Yes, that would be an option, but less elegant than the `ZStream` version because it requires working with callbacks instead of the nice collection-like abstraction that streams provide.

I'm also just writing a `RemoteSpec` for the `ZStream` case and it shows that my approach in https://github.com/zio/zio-actors/pull/269 was too naive 😉 I'm getting all kinds of `ClassCastExceptions` now because...

@softinio @mtsokol @mijicd I could need some help 😅 I've added a [test that should stream 10 messages back to the requester](https://github.com/zio/zio-actors/pull/270/files#diff-56dd228bbfa0790570b953d00615cf8eR95-R107), but after 2 messages it just stops. I...

Hi @mtsokol, thanks for the offer! I can do other things in the meantime, so later this week is fine :+1:

Hi @mtsokol, did you already find some time to have a look at this? I don't need a full analyis or solution, but some hints that point me in the...