mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 10:48:51 +00:00
771f8c797b
- Make the Java generator use program->get_namespace("java") instead of program->get_java_namespace() - Eliminate the explicit "java_namespace" in t_program. - Deprecate the java_namespace token. - Update example .thrift files and syntax files. git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665514 13f79535-47bb-0310-9956-ffa450edef68
20 lines
347 B
Thrift
Executable File
20 lines
347 B
Thrift
Executable File
#!/usr/local/bin/thrift -cpp -java -py -php -xsd -perl
|
|
|
|
/**
|
|
* This Thrift file can be included by other Thrift files that want to share
|
|
* these definitions.
|
|
*/
|
|
|
|
namespace cpp shared
|
|
namespace java shared
|
|
perl_package shared
|
|
|
|
struct SharedStruct {
|
|
1: i32 key
|
|
2: string value
|
|
}
|
|
|
|
service SharedService {
|
|
SharedStruct getStruct(1: i32 key)
|
|
}
|