Making createAsker private, adding docs for 'to', changing Java API to be symmetric to Java

This commit is contained in:
Viktor Klang 2012-02-01 14:54:54 +01:00
parent 75e90cccdf
commit 009a1afe89
5 changed files with 15 additions and 6 deletions

View file

@ -247,7 +247,7 @@ public class UntypedActorDocTestBase {
}
});
pipe(transformed, actorC);
pipe(transformed).to(actorC);
//#ask-pipe
system.shutdown();
}

View file

@ -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);
}