thrift/tutorial
Rob Becker f1eadad76e THRIFT-4654 Minor fixes for dart 1 & 2 compatibility (backwards compatible) (#1617)
* THRIFT-4654 Minor fixes for dart 1 & 2 compatibility
* update dockerfiles for CI to test dart 2
* THRIFT-4654 update pubspec for tests
* THRIFT-4654 update dart test generator and readme to 1.24.3
* THRIFT-4654 update generated dart sdk to a range
* fix the dart tutorials
* Add .dart_tool directories to .gitignore
* THRIFT-4654: use dart 2.1.0 and fix cross test dart client timeout
2019-01-21 22:24:01 -05:00
..
as3 THRIFT-2392: Actionscript tutorial 2014-03-11 22:21:07 -04:00
c_glib configure.ac, Makefile.am: introduce THRIFT variable to support cross-compilation 2017-09-09 07:50:54 -07:00
cl THRIFT-4676: Fix intermittent CL build failures 2018-12-05 16:09:10 -05:00
cpp THRIFT-4730: remove pthread code and refactor, ending up with just ThreadFactory 2019-01-11 09:13:12 -05:00
csharp Version 0.12.0 2018-12-18 20:24:34 -05:00
d THRIFT-3666 Build D tutorial as part of Autotools build 2016-02-27 17:17:27 +09:00
dart THRIFT-4654 Minor fixes for dart 1 & 2 compatibility (backwards compatible) (#1617) 2019-01-21 22:24:01 -05:00
delphi Merge remote-tracking branch 'origin/0.12.0' into consume-0.12.0 2018-12-30 11:06:00 -05:00
erl THRIFT-4426: remove a symbolic link that was checked in 2018-12-27 13:03:23 -05:00
go Replace git.apache.org imports with github.com 2018-10-19 07:48:56 +01:00
haxe THRIFT-4398 Update EXTRA_DIST for "make dist" 2017-12-01 23:01:41 +01:00
hs Merge remote-tracking branch 'origin/0.12.0' into consume-0.12.0 2018-12-30 11:06:00 -05:00
java THRIFT-(1418|1507|3983|4120|4178|4259|4294): Multiple issues 2018-01-24 12:28:55 -05:00
js THRIFT-4546: replace all git-wip-us.apache.org to github.com 2018-12-28 07:46:47 -05:00
netcore THRIFT-4434: fixes to delegate all dependency responsibility from make to the dotnet build 2018-01-14 08:41:10 -05:00
nodejs configure.ac, Makefile.am: introduce THRIFT variable to support cross-compilation 2017-09-09 07:50:54 -07:00
ocaml Merge remote-tracking branch 'origin/0.12.0' into consume-0.12.0 2018-12-30 11:06:00 -05:00
perl THRIFT-4382: Replace the use of Indirect Object Syntax calls to new() 2018-10-17 19:13:45 -04:00
php THRIFT-4459: reduce php library directory depth 2018-01-16 09:22:42 -05:00
py THRIFT-4351: use travis build stages to optimize build, 2017-10-19 11:29:04 -04:00
py.tornado configure.ac, Makefile.am: introduce THRIFT variable to support cross-compilation 2017-09-09 07:50:54 -07:00
py.twisted configure.ac, Makefile.am: introduce THRIFT variable to support cross-compilation 2017-09-09 07:50:54 -07:00
rb configure.ac, Makefile.am: introduce THRIFT variable to support cross-compilation 2017-09-09 07:50:54 -07:00
rs Reformat rust code with rustfmt 1.0 2018-12-16 18:22:04 -05:00
Makefile.am THRIFT-82: Add Common Lisp support 2018-03-02 13:44:50 -05:00
README.md THRIFT-2407 use markdown (rename README => README.md) 2014-03-19 06:47:47 +01:00
shared.thrift THRIFT-82: Add Common Lisp support 2018-03-02 13:44:50 -05:00
tutorial.thrift THRIFT-82: Add Common Lisp support 2018-03-02 13:44:50 -05: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.