From commits-return-1297-archive-asf-public=cust-asf.ponee.io@zipkin.apache.org Sun May 12 11:14:02 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 [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id EA85318062F for ; Sun, 12 May 2019 13:14:01 +0200 (CEST) Received: (qmail 10900 invoked by uid 500); 12 May 2019 11:14:01 -0000 Mailing-List: contact commits-help@zipkin.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@zipkin.apache.org Delivered-To: mailing list commits@zipkin.apache.org Received: (qmail 10888 invoked by uid 99); 12 May 2019 11:14:01 -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; Sun, 12 May 2019 11:14:01 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 1F1F787323; Sun, 12 May 2019 11:14:01 +0000 (UTC) Date: Sun, 12 May 2019 11:14:00 +0000 To: "commits@zipkin.apache.org" Subject: [incubator-zipkin] branch bytebuffer updated (033f96f -> e4f39b0) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <155765964079.18067.4899336709886481336@gitbox.apache.org> From: adriancole@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-zipkin X-Git-Refname: refs/heads/bytebuffer X-Git-Reftype: branch X-Git-Oldrev: 033f96f37c5cd7f8f176ca73c475824a774c46c4 X-Git-Newrev: e4f39b0d82fb2436206d4f9e897f42c68cd75cd5 X-Git-NotificationType: ref_changed X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. adriancole pushed a change to branch bytebuffer in repository https://gitbox.apache.org/repos/asf/incubator-zipkin.git. from 033f96f Makes SpanBytesDecoder work on ByteBuffer add e4f39b0 whoops forgot the important parts No new revisions were added by this update. Summary of changes: ...rBenchmarks.java => WriteBufferBenchmarks.java} | 60 +++- .../src/main/java/zipkin2/internal/ReadBuffer.java | 385 +++++++++++++++++++++ .../main/java/zipkin2/internal/WriteBuffer.java | 291 ++++++++++++++++ .../test/java/zipkin2/internal/ReadBufferTest.java | 80 +++++ .../java/zipkin2/internal/WriteBufferTest.java | 238 +++++++++++++ 5 files changed, 1042 insertions(+), 12 deletions(-) copy benchmarks/src/main/java/zipkin2/internal/{DelayLimiterBenchmarks.java => WriteBufferBenchmarks.java} (52%) create mode 100644 zipkin/src/main/java/zipkin2/internal/ReadBuffer.java create mode 100644 zipkin/src/main/java/zipkin2/internal/WriteBuffer.java create mode 100644 zipkin/src/test/java/zipkin2/internal/ReadBufferTest.java create mode 100644 zipkin/src/test/java/zipkin2/internal/WriteBufferTest.java