thrift/tutorial
2015-11-03 23:28:43 +01:00
..
as3 THRIFT-2392: Actionscript tutorial 2014-03-11 22:21:07 -04:00
c_glib THRIFT-3283 c_glib: Tutorial server always exits with warning 2015-07-31 23:23:48 +02:00
cpp THRIFT-3274 calling "make clean" twice in a row yields make error 2015-11-03 23:28:43 +01:00
csharp THRIFT-3319 CSharp tutorial will not build using the *.sln 2015-09-11 23:49:54 +02:00
d THRIFT-727 - C++: what() method of generated exceptions will provide more information 2015-05-18 19:47:23 +02:00
dart THRIFT-3299 Apache Thrift language bindings for Dart 2015-10-03 01:44:44 +02:00
delphi THRIFT-2768: Whitespace Fixup 2014-10-03 20:12:40 +02:00
erl THRIFT-3400 Add Erlang to cross test 2015-10-31 14:54:12 +09:00
go THRIFT-727 what() method of generated exceptions will provide more information 2015-05-20 22:44:55 +02:00
haxe THRIFT-3076 Compatibility with Haxe 3.2.0 2015-05-31 00:39:41 +02:00
hs THRIFT-727 - C++: what() method of generated exceptions will provide more information 2015-05-18 19:47:23 +02:00
java THRIFT-727 - C++: what() method of generated exceptions will provide more information 2015-05-18 19:47:23 +02:00
js THRIFT-2830:clean up ant tutorial warnings 2014-11-15 22:21:36 -08:00
nodejs THRIFT-727 - C++: what() method of generated exceptions will provide more information 2015-05-18 19:47:23 +02:00
ocaml THRIFT-727 - C++: what() method of generated exceptions will provide more information 2015-05-18 19:47:23 +02:00
perl THRIFT-727 - C++: what() method of generated exceptions will provide more information 2015-05-18 19:47:23 +02:00
php THRIFT-727 - C++: what() method of generated exceptions will provide more information 2015-05-18 19:47:23 +02:00
py THRIFT-727 - C++: what() method of generated exceptions will provide more information 2015-05-18 19:47:23 +02:00
py.tornado THRIFT-727 - C++: what() method of generated exceptions will provide more information 2015-05-18 19:47:23 +02:00
py.twisted THRIFT-727 - C++: what() method of generated exceptions will provide more information 2015-05-18 19:47:23 +02:00
rb THRIFT-727 - C++: what() method of generated exceptions will provide more information 2015-05-18 19:47:23 +02:00
Makefile.am THRIFT-3299 Create an Apache Thrift language binding for Dart (dartlang.org). 2015-10-03 01:43:59 +02:00
README.md THRIFT-2407 use markdown (rename README => README.md) 2014-03-19 06:47:47 +01:00
shared.thrift THRIFT-3299 Create an Apache Thrift language binding for Dart (dartlang.org). 2015-10-03 01:43:59 +02:00
tutorial.thrift THRIFT-3299 Create an Apache Thrift language binding for Dart (dartlang.org). 2015-10-03 01:43:59 +02:00

Thrift Tutorial

License

Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Tutorial

  1. First things first, you'll need to install the Thrift compiler and the language libraries. Do that using the instructions in the top level README.md file.

  2. Read tutorial.thrift to learn about the syntax of a Thrift file

  3. Compile the code for the language of your choice:

    $ thrift $ thrift -r --gen cpp tutorial.thrift

  4. Take a look at the generated code.

  5. Look in the language directories for sample client/server code.

  6. That's about it for now. This tutorial is intentionally brief. It should be just enough to get you started and ready to build your own project.