thrift/tutorial
Jens Geyer ac2deed0fc THRIFT-5746 Upgrade to net8
Client: netstd
Patch: Jens Geyer

This updates certain packages that became available now for 8.0.0
2023-11-25 14:20:37 +01:00
..
c_glib Remove execute bit from plain text files in git (#2611) 2022-05-24 05:19:41 -04:00
cl THRIFT-5410 CL build broken: Component :NET.DIDIERVERNA.CLON.TERMIO not found 2022-08-30 23:58:58 +02:00
cpp Remove execute bit from plain text files in git (#2611) 2022-05-24 05:19:41 -04:00
d THRIFT-4717: fix up make clean with autoconf 2019-01-25 23:33:54 -05:00
dart created reöease branch 0.19.0 2023-07-08 12:49:11 +02:00
delphi THRIFT-5740 inherited interfaces should be explicitly listed in Delphi class decl 2023-11-03 11:19:47 +01:00
erl THRIFT-4426: remove a symbolic link that was checked in 2018-12-27 13:03:23 -05:00
go Use multi-module to cleanup top level go.mod 2022-11-02 15:44:07 -07:00
haxe THRIFT-5593 Implement uuid for Haxe 2022-09-05 22:04:21 +02:00
java fixing missing EXTRA_DISTs 2022-08-31 22:29:16 +02:00
js fixing missing EXTRA_DISTs 2022-08-31 22:29:16 +02:00
netstd THRIFT-5746 Upgrade to net8 2023-11-25 14:20:37 +01:00
nodejs THRIFT-5674: Catch and handle server implementation exceptions 2023-03-02 00:12:25 +01:00
ocaml created reöease branch 0.19.0 2023-07-08 12:49:11 +02:00
perl Remove execute bit from plain text files in git (#2611) 2022-05-24 05:19:41 -04:00
php Remove execute bit from plain text files in git (#2611) 2022-05-24 05:19:41 -04:00
py Remove execute bit from plain text files in git (#2611) 2022-05-24 05:19:41 -04:00
py.tornado Remove execute bit from plain text files in git (#2611) 2022-05-24 05:19:41 -04:00
py.twisted Remove execute bit from plain text files in git (#2611) 2022-05-24 05:19:41 -04:00
rb Remove execute bit from plain text files in git (#2611) 2022-05-24 05:19:41 -04:00
rs THRIFT-5600: rust lib to upgrade to edition 2021 2022-09-05 22:56:04 +02:00
swift THRIFT-5621: Add Swift tutorial 2022-09-09 00:22:35 +02:00
Makefile.am THRIFT-5621: Add Swift tutorial 2022-09-09 00:22:35 +02:00
README.md (no ticket) Improved formatting 2020-02-05 22:36:33 +01:00
shared.thrift Revert "THRIFT-5567: remove cl namespace references (#2580)" 2022-08-30 23:58:56 +02:00
tutorial.thrift Revert "THRIFT-5567: remove cl namespace references (#2580)" 2022-08-30 23:58:56 +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
  1. Take a look at the generated code.

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

  3. 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.