From issues-return-121605-archive-asf-public=cust-asf.ponee.io@ignite.apache.org Mon Jun 28 09:52:02 2021 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mxout1-he-de.apache.org (mxout1-he-de.apache.org [95.216.194.37]) by mx-eu-01.ponee.io (Postfix) with ESMTPS id 72A1F180645 for ; Mon, 28 Jun 2021 11:52:02 +0200 (CEST) Received: from mail.apache.org (mailroute1-lw-us.apache.org [207.244.88.153]) by mxout1-he-de.apache.org (ASF Mail Server at mxout1-he-de.apache.org) with SMTP id D7A21607DC for ; Mon, 28 Jun 2021 09:52:01 +0000 (UTC) Received: (qmail 97859 invoked by uid 500); 28 Jun 2021 09:52:01 -0000 Mailing-List: contact issues-help@ignite.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ignite.apache.org Delivered-To: mailing list issues@ignite.apache.org Received: (qmail 97842 invoked by uid 99); 28 Jun 2021 09:52:01 -0000 Received: from ec2-52-204-25-47.compute-1.amazonaws.com (HELO mailrelay1-ec2-va.apache.org) (52.204.25.47) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Jun 2021 09:52:01 +0000 Received: from jira2-he-de.apache.org (jira2-he-de.apache.org [168.119.33.54]) by mailrelay1-ec2-va.apache.org (ASF Mail Server at mailrelay1-ec2-va.apache.org) with ESMTPS id 19AD83E96D for ; Mon, 28 Jun 2021 09:52:01 +0000 (UTC) Received: from jira2-he-de.apache.org (localhost.localdomain [127.0.0.1]) by jira2-he-de.apache.org (ASF Mail Server at jira2-he-de.apache.org) with ESMTP id 1A8BEC809A7 for ; Mon, 28 Jun 2021 09:52:00 +0000 (UTC) Date: Mon, 28 Jun 2021 09:52:00 +0000 (UTC) From: "Aleksandr Polovtcev (Jira)" To: issues@ignite.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (IGNITE-15018) Add support for message inheritance for @Transferable MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 Aleksandr Polovtcev created IGNITE-15018: -------------------------------------------- Summary: Add support for message inheritance for @Transferable Key: IGNITE-15018 URL: https://issues.apache.org/jira/browse/IGNITE-15018 Project: Ignite Issue Type: Task Components: networking Affects Versions: 3.0.0-alpha3 Reporter: Aleksandr Polovtcev Assignee: Aleksandr Polovtcev {{@Transferable}} annotation should support message inheritance: it can be placed on an interface that extends another interface that declares some message fields. These fields should be present in the generated implementations. For example: {code:java} interface A extends NetworkMessage { int a(); } @Transferable interface B extends A { int b(); } {code} The "{{a}}" field must be present in the generated implementation for {{B}}. -- This message was sent by Atlassian Jira (v8.3.4#803005)