Making createAsker private, adding docs for 'to', changing Java API to be symmetric to Java
This commit is contained in:
parent
75e90cccdf
commit
009a1afe89
5 changed files with 15 additions and 6 deletions
|
|
@ -247,7 +247,7 @@ public class UntypedActorDocTestBase {
|
|||
}
|
||||
});
|
||||
|
||||
pipe(transformed, actorC);
|
||||
pipe(transformed).to(actorC);
|
||||
//#ask-pipe
|
||||
system.shutdown();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -151,7 +151,8 @@ public class FaultHandlingDocSample {
|
|||
public Progress apply(CurrentCount c) {
|
||||
return new Progress(100.0 * c.count / totalCount);
|
||||
}
|
||||
}), progressListener);
|
||||
}))
|
||||
.to(progressListener);
|
||||
} else {
|
||||
unhandled(msg);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue