.. | ||
Benchmarks/Thrift.Benchmarks | ||
Tests | ||
Thrift | ||
build.cmd | ||
build.sh | ||
Directory.Build.props | ||
Makefile.am | ||
README.md | ||
runtests.cmd | ||
runtests.sh | ||
Thrift.sln |
Apache Thrift netstd
Thrift client library for Microsoft .NET Standard
Build the library
How to build on Windows
- Get Thrift IDL compiler executable, add to some folder and add path to this folder into PATH variable
- Open the Thrift.sln project with Visual Studio and build. or
- Build with scripts
How to build on Unix/Linux
- Ensure you have .NET Core SDK 3.1 (LTS) installed, or use the Ubuntu docker image
- Follow common automake build practice:
./ bootstrap && ./ configure && make
Known issues
- In trace logging mode you can see some not important internal exceptions
Migration to netstd
... from netcore
If you are migrating your code from netcore library, you will have to:
- Switch to
thrift -gen netstd
- the following compiler flags are no longer needed or supported:
hashcode
is now standard, whilenullable
is no longer supported. - the
Thrift.Transport
andThrift.Protocol
namespaces now use the singular form - add
using Thrift.Processor;
in the server code where appropriate - rename all
T*ClientTransport
toT*Transport
- rename all
TBaseServer
occurrences in your code toTServer
- the
SingletonTProcessorFactory
is now calledTSingletonProcessorFactory
- and the
AsyncBaseServer
is now theTSimpleAsyncServer
You may wonder why we changed so many names. The naming scheme has been revised for two reasons: First, we want to get back the established, well-known naming consistency across the Thrift libraries which the netcore library did not fully respect. Second, by achieving that first objective, we get the additional benefit of making migration at least a bit easier for C# projects.
... from csharp
Because of the different environment requirements, migration from C# takes slightly more efforts. While the code changes related to Thrift itself are moderate, you may need to upgrade certain dependencies, components or even modules to more recent versions.
- Client and server applications must use at least framework 4.6.1, any version below will not work.
- Switch to
thrift -gen netstd
. The following compiler flags are no longer needed or supported:hashcode
andasync
are now standard, whilenullable
is no longer supported. - Familiarize yourself with the
async/await
model, if you have not already done so. As netstd does not supportISync
anymore, async is mandatory. The synchronous model is simply no longer available (that's also the reason why we don't need theasync
flag anymore). - Consider proper use of
cancellationToken
parameters. They are optional but may be quite helpful. - As you probably already guessed, there are a few names that have been changed:
- add
using Thrift.Processor;
in the server code where appropriate - the
TServerSocket
is now calledTServerSocketTransport
- change
IProtocolFactory
intoITProtocolFactory
- if you are looking for
TSimpleServer
, tryTSimpleAsyncServer
instead - similarly, the
TThreadPoolServer
is now aTThreadPoolAsyncServer
- the server's
Serve()
method does nowServeAsync()
- In case you are using Thrift server event handlers: the
SetEventHandler
method now starts with an uppercase letter - and you will also have to revise the method names of all
TServerEventHandler
descendants you have in your code