thrift/lib/st
Mark Slee efd37f14d2 Add Smalltalk support to Thrift
Summary: Submitted by Patrick Collison


git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665358 13f79535-47bb-0310-9956-ffa450edef68
2007-11-20 05:13:09 +00:00
..
README Add Smalltalk support to Thrift 2007-11-20 05:13:09 +00:00
thrift.st Add Smalltalk support to Thrift 2007-11-20 05:13:09 +00:00

Author: Patrick Collison <patrick@collison.ie>
Last updated Nov 2007

To get started, just file in thrift.st with Squeak, and run something like:

sock := TSocket new host: 'localhost'; port: 9090; open.
prot := TBinaryProtocol new transport: sock.
calc := CalculatorClient new inProtocol: prot.
calc addNum1: 10 num2: 15

Tested in Squeak 3.7, but should work fine with anything later.