He-Pin commented on code in PR #947: URL: https://github.com/apache/incubator-pekko/pull/947#discussion_r1451769575
########## actor/src/main/java/org/apache/pekko/japi/pf/PFBuilder.java: ########## @@ -21,6 +21,11 @@ */ public final class PFBuilder<I, R> extends AbstractPFBuilder<I, R> { + /** Create a new {@link PFBuilder}. */ + public static <I, R> PFBuilder<I, R> create() { + return new PFBuilder<>(); + } Review Comment: Just a small helper method for javadsl. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@pekko.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@pekko.apache.org For additional commands, e-mail: notifications-h...@pekko.apache.org