Merge pull request #24508 from psliwa/patch-1-defer-method

Adding defer method to PersistentActor
This commit is contained in:
Patrik Nordwall 2018-03-21 13:41:51 +01:00 committed by GitHub
commit 11f2ef5784
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 230 additions and 75 deletions

View file

@ -439,7 +439,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());
});
}