Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id AA84A200D11 for ; Mon, 2 Oct 2017 09:10:03 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id A8EAB1609EF; Mon, 2 Oct 2017 07:10:03 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 20BC01609DE for ; Mon, 2 Oct 2017 09:10:02 +0200 (CEST) Received: (qmail 3940 invoked by uid 500); 2 Oct 2017 07:10:02 -0000 Mailing-List: contact dev-help@thrift.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@thrift.apache.org Delivered-To: mailing list dev@thrift.apache.org Received: (qmail 3929 invoked by uid 99); 2 Oct 2017 07:10:01 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 02 Oct 2017 07:10:01 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id CC078E2F42; Mon, 2 Oct 2017 07:10:00 +0000 (UTC) From: dcelasun To: dev@thrift.apache.org Reply-To: dev@thrift.apache.org Message-ID: Subject: [GitHub] thrift pull request #1381: THRIFT-4285: Move TX/RX methods from gen. code to... Content-Type: text/plain Date: Mon, 2 Oct 2017 07:10:00 +0000 (UTC) archived-at: Mon, 02 Oct 2017 07:10:03 -0000 GitHub user dcelasun opened a pull request: https://github.com/apache/thrift/pull/1381 THRIFT-4285: Move TX/RX methods from gen. code to library This change removes a lot of duplication from generated code and allows the caller to customize how they can read from / write to the transport. This patch was originally written by [Chris Bannister](https://issues.apache.org/jira/browse/THRIFT-4285) but it seemed abandoned and no longer applied cleanly to master. I fixed it in order to get things moving again. It would be great if we can get this in before 0.11 is tagged. Client: Go You can merge this pull request into a Git repository by running: $ git pull https://github.com/dcelasun/thrift THRIFT-4285 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/thrift/pull/1381.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #1381 ---- commit 0e03968520db377bce9f85caf55d7a218f9d59d5 Author: D. Can Celasun Date: 2017-09-21T13:21:00Z THRIFT-4285 Move TX/RX methods from gen. code to library This change removes a lot of duplication from generated code and allows the caller to customize how they can read from / write to the transport. Client: Go ---- ---