Adding defer method to PersistentActor

This commit is contained in:
piotr.sliwa 2018-02-05 22:36:26 +01:00
parent 39c97c3306
commit 2f6deace13
7 changed files with 230 additions and 75 deletions

View file

@ -438,7 +438,7 @@ public class LambdaPersistenceDocTest {
sender().tell(e, self());
});
deferAsync(String.format("evt-%s-3", c), e -> {
defer(String.format("evt-%s-3", c), e -> {
sender().tell(e, self());
});
}