sogou / srpc

RPC framework based on C++ Workflow. Supports SRPC, Baidu bRPC, Tencent tRPC, thrift protocols.
Apache License 2.0
1.94k stars 383 forks source link

Thrift Union 支持 #249

Closed redkongdong closed 2 years ago

redkongdong commented 2 years ago

请问现在thrift idl 里边定义union是支持的吗?

我试了定义的并没有被解析出来生成对应代码

Barenboim commented 2 years ago

有可能。我们加一下。这个好像和struct在解析上没有什么区别吧?

redkongdong commented 2 years ago

应该差不多

Barenboim commented 2 years ago

支持上了。试了一下,在thrift里,union就是struct的一个别名,产生的c++代码是一模一样的。

redkongdong commented 2 years ago

感恩