From notifications-return-367-archive-asf-public=cust-asf.ponee.io@nemo.apache.org Tue Mar 26 05:25:04 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id F39C818076D for ; Tue, 26 Mar 2019 06:25:03 +0100 (CET) Received: (qmail 28203 invoked by uid 500); 26 Mar 2019 05:25:02 -0000 Mailing-List: contact notifications-help@nemo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@nemo.apache.org Delivered-To: mailing list notifications@nemo.apache.org Received: (qmail 28137 invoked by uid 99); 26 Mar 2019 05:25:02 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 26 Mar 2019 05:25:02 +0000 From: GitBox To: notifications@nemo.apache.org Subject: [GitHub] [incubator-nemo] wonook commented on a change in pull request #203: [NEMO-360] Implementing an 'XGBoostPolicy' Message-ID: <155357790214.12293.9773103391052421671.gitbox@gitbox.apache.org> Date: Tue, 26 Mar 2019 05:25:02 -0000 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit wonook commented on a change in pull request #203: [NEMO-360] Implementing an 'XGBoostPolicy' URL: https://github.com/apache/incubator-nemo/pull/203#discussion_r268947061 ########## File path: common/src/main/java/org/apache/nemo/common/ir/vertex/executionproperty/IgnoreSchedulingTempDataReceiverProperty.java ########## @@ -49,4 +49,14 @@ private IgnoreSchedulingTempDataReceiverProperty() { public static IgnoreSchedulingTempDataReceiverProperty of() { return IGNORE_SCHEDULING_TEMP_DATA_RECEIVER_PROPERTY; } + + /** + * Static method exposing the constructor. + * + * @param value the boolean value. This is always true by default for this property. + * @return the new execution property. + */ + public static IgnoreSchedulingTempDataReceiverProperty of(final Boolean value) { + return new IgnoreSchedulingTempDataReceiverProperty(value); + } Review comment: This is actually called by reflection. I'll add it as a comment. ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: users@infra.apache.org With regards, Apache Git Services