blob: 3040e251cb00b644d55033e89087158573235d4b [file] [log] [blame]
Roger Meier122803b2012-06-18 20:23:58 +00001/*
2 transport-sample thrift IDL file .
3 Execute thriftme.bat under Windows to generate the cpp stubs from this IDL.
4 */
5
6// See thrift/tutorial/tutorial.thrift and shared.thrift for more extensive examples.
7
8
9namespace cpp Sample
10namespace java Sample
11namespace perl Sample
12
13//This struct is not used in the sample. Shown here for illustrative purposes only.
14//
15struct SampleStruct
16{
17 1: i32 key
18 2: string value
19}
20
21
22//A service contains the RPC(s).
23//
24service SampleService
25{
26 string HelloThere(1:string HelloString),
27 void ServerDoSomething(),
28
29 //Client calls this to tell server which port to connect back on.
30 void ClientSideListenPort(1:i16 Port),
31 //Named pipe version
32 void ClientSidePipeName(1:string name),
33}
34
35//Sample RPC on the 'client' side that the master server can call.
36service SampleCallback
37{
38 void pingclient(),
39}