- 论坛徽章:
- 24
|
eveson 发表于 2014-12-11 15:37 ![]()
看了下介绍,感觉thrift 其实就实现了一个类似于select或者epool的功能,其他没做什么,具体的实现代 ...
还有 RPC 的编码和解码也是 thrift 完成的,业务逻辑处理当然要自己写了。
- class CalculatorHandler : virtual public CalculatorIf {
- public:
- CalculatorHandler() {
- // Your initialization goes here
- }
- /**
- * A method definition looks like C code. It has a return type, arguments,
- * and optionally a list of exceptions that it may throw. Note that argument
- * lists and exception lists are specified using the exact same syntax as
- * field lists in struct or exception definitions.
- */
- void ping() {
- // Your implementation goes here
- printf("ping\n");
- }
- int32_t add(const int32_t num1, const int32_t num2) {
- // Your implementation goes here
- printf("add\n");
- }
- int32_t calculate(const int32_t logid, const Work& w) {
- // Your implementation goes here
- printf("calculate\n");
- }
- /**
- * This method has a oneway modifier. That means the client only makes
- * a request and does not listen for any response at all. Oneway methods
- * must be void.
- */
- void zip() {
- // Your implementation goes here
- printf("zip\n");
- }
- };
复制代码 这个类是 thrift 生成的,需要程序员实现各个服务函数的功能,然后 RPC 的编码和解码和网络通信是 thrift 完成的。
|
|