Denis Mikhaylov
Denis Mikhaylov
@boopickleWireProtocol macro expansion error due to empty parameter list in event sourced entity api
Actually I’d rather forbid empty params list methods at all :) They are used to mark something impure, which should not be a case.
@boopickleWireProtocol macro expansion error due to empty parameter list in event sourced entity api
A nice error message would be great.
@SemanticBeeng that's the topic I thought a lot about. When you use Kafka as an event log you loose the ability to query events by entity key. Imagine the time...
@schrepfler what I mean is that you can’t use eventually consistent KTable to validate commands against.
There is a promising Akka Persistence [journal implementation](https://github.com/evolution-gaming/kafka-journal) based on both Cassandra and Kafka. You may want to take a look at the trade-offs made.
Good idea. I think it is doable using a trick similar to `EitherK[M, R, F]`. It turns `M[F]` into `M[EitherT[F, R, ?]]`. You can create `EnrichedK[M, C, F]` that turns...
I see what you want however I prefer to use composition rather than modify existing runtime. So I need some time to think about it :)
Hi! As you already said it is possible to implement stateful saga using Aecor Entity, as it allows to perform arbitrary effects during command processing. I'm open to any suggestions...
Yes, there is almost everything you need. ```scala sealed abstract class CustomerEvent final case class CollateralRegistered(collateral: Collateral) extends CustomerEvent sealed abstract class CustomerRejection object CustomerNotFound extends CustomerRejection def update(state: Option[CustomerState],...
I have the same behavior on the latest version of kubeshark.