]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/thrift/contrib/transport-sample/Sample.thrift
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / jaegertracing / thrift / contrib / transport-sample / Sample.thrift
1 /*
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
9 namespace cpp Sample
10 namespace java Sample
11 namespace perl Sample
12
13 //This struct is not used in the sample. Shown here for illustrative purposes only.
14 //
15 struct SampleStruct
16 {
17 1: i32 key
18 2: string value
19 }
20
21
22 //A service contains the RPC(s).
23 //
24 service 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.
36 service SampleCallback
37 {
38 void pingclient(),
39 }