Vaughn Vernon

Results 37 comments of Vaughn Vernon

Hi guys, I haven't been following this conversation closely enough, but I will just chime in based on what I perceive this thread to be about. Sometimes you need to...

Hey, Steven! Thanks for your comments. Currently we solve the reactive-over-JDBC by serializing requests within actors in our `vlingo-symbio` implementations. You can create as many `JDBCObjectStoreActor` as makes sense for...

R2DBC is an async replacement for JDBC.

FWIW, I like your font, expect the capital D is bothersome (over-the-top arch lines to the left). I think a few other characters are, too. I have used HANDYHANDY and...

Hi @bwehrle We can code configure all mailbox plugins. Please see: https://github.com/vlingo/xoom-actors/blob/f66fa3b15e593f49de0c30df9c34c172fb4d9dbe/src/test/java/io/vlingo/xoom/actors/ConfigurationTest.java#L50 - Is this ^^^ the configuration that you are looking for? - If not, what would be different...

@bwehrle Per this Slack message from @pflueras, would you please provide clarification on your request? > #99 - I think he wants the configurations along with referenced plugins to be...

@bwehrle Would you please ^^^ comment on the previous two comments, or at least the last one? We don't understand how you intend to use dynamic, in-code configuration.

@bwehrle Additionally I just implemented the single "arrayQueue" mailbox per actor instance. If a developer needs a kind of "shared mailbox" they can use one of the following router types:...

The API has always supported creating an actor with a mailbox by name. You used it in your overflow test: ``` final CountTaker countTaker = world.actorFor( CountTaker.class, Definition.has(CountTakerActor.class, Definition.parameters(testResults), "testArrayQueueMailbox",...

@bwehrle The implementation needs strengthening since currently the `name` must be the first property to be set. I will first collect all values and then generate the `Properties` on request.