You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@thrift.apache.org by ct...@apache.org on 2022/05/10 11:11:18 UTC

[thrift] branch master updated (ab83ffc89 -> a24bcd39a)

This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/thrift.git


    from ab83ffc89 THRIFT-5564: setup cross test in GitHub action (#2602)
     add a24bcd39a THRIFT-5582: Improve TProtocol.java for Kotlin generator (#2603)

No new revisions were added by this update.

Summary of changes:
 .../cpp/src/thrift/generate/t_kotlin_generator.cc  | 146 +--------
 .../org/apache/thrift/TMultiplexedProcessor.java   |   1 +
 .../apache/thrift/protocol/TBinaryProtocol.java    |   1 +
 .../apache/thrift/protocol/TCompactProtocol.java   |  36 +++
 .../org/apache/thrift/protocol/TJSONProtocol.java  |   1 +
 .../java/org/apache/thrift/protocol/TList.java     |   8 +
 .../main/java/org/apache/thrift/protocol/TMap.java |  12 +
 .../java/org/apache/thrift/protocol/TMessage.java  |  12 +
 .../java/org/apache/thrift/protocol/TProtocol.java | 339 ++++++++++++++++-----
 .../apache/thrift/protocol/TProtocolDecorator.java |  42 +++
 .../apache/thrift/protocol/TProtocolFactory.java   |   2 +-
 .../org/apache/thrift/protocol/TProtocolUtil.java  |   3 +
 .../org/apache/thrift/protocol/TReadProtocol.java  |  47 +++
 .../main/java/org/apache/thrift/protocol/TSet.java |   8 +
 .../thrift/protocol/TSimpleJSONProtocol.java       |   1 +
 .../java/org/apache/thrift/protocol/TStruct.java   |   4 +
 .../org/apache/thrift/protocol/TTupleProtocol.java |   4 +
 .../org/apache/thrift/protocol/TWriteProtocol.java |  49 +++
 18 files changed, 517 insertions(+), 199 deletions(-)
 create mode 100644 lib/java/src/main/java/org/apache/thrift/protocol/TReadProtocol.java
 create mode 100644 lib/java/src/main/java/org/apache/thrift/protocol/TWriteProtocol.java