Closed buritos closed 4 years ago
... public Completes<Integer> boom() { return completes().with(1).andThen(one -> one + 1); } ...
When boom is called on the actor proxy created via World.actorFor it throws:
World.actorFor
java.lang.UnsupportedOperationException: null at io.vlingo.actors.ResultReturns.andThen(ResultReturns.java:38)
I was expecting a successful Completes with the Integer value 2 inside.
Completes
Integer
2
@buritos My feedback is in Slack. If you want to condense any of that and put it here for later reference that's fine.
This was fixed by the following and some redesign.
https://github.com/vlingo/vlingo-common/issues/12
When boom is called on the actor proxy created via
World.actorFor
it throws:I was expecting a successful
Completes
with theInteger
value2
inside.