python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Using a processor factory with TMultiplexedProcessor in thrift
I have the following architecture in my code:
1 thrift Server
1 thrift MultiplexedProcessor
several Services & associated processors/handlers
N thrift clients (several by processor/handler)
1 que...
Julien Greard
Votes: 0
Answers: 0
C++ Make file - cannot include Thrift library
I am trying to compile my example Thrift (client-server) program. I've got Thrift installed in the path $HOME/thrift/lib, but I cannot resolve why the compiler is giving me errors, that cannot include...
Adam
Votes: 0
Answers: 1
c++ thrift serialize multiple objects to vector<string> only end with the last object result
The code is :
std::vector<std::string*> itemDataList;
for(int i = 0 ; i<4; i++){
ctr::ZwItem zwItem;
zwItem.news = newsList[i];
zwItem.__isset.news = true;
boost::shared_ptr&...
L.Maple
Votes: 0
Answers: 0
Generating Python code from OpenAPI spec that recieves a "handler" object
I have an OpenAPI spec that I successfully turned into Server/Client Python code using OpenAPI generator. However the structure of the server does not really fit my needs. To specify how to handle req...
positr0nium
Votes: 0
Answers: 1