利用thrift rpc进行C++与Go的通信[扩展]

参考 https://www.cnblogs.com/pluse/p/7761365.html

利用thrift rpc进行C++与Go的通信的过程中,报错

# testRPCX

.\main.go:4:2: imported and not used: "context"

.\main.go:29:43: not enough arguments in call to client.GetCurrtentTime

have ()

want (context.Context)

错误: 进程退出代码 2.

 

修改Go Client代码如下

即为修改 timeResult, err := client.GetCurrtentTime() 为 client.GetCurrtentTime(context.Background())

package main

import (
	"context" //添加
	"fmt"
	"os"
	"timerpc"

	"github.com/apache/thrift/lib/go/thrift"
)

func main() {
	// get socket
	socket, err := thrift.NewTSocket("127.0.0.1:9090")

	// choose transport
	transport := thrift.NewTBufferedTransport(socket, 8192)

	// serialize
	protocolFactory := thrift.NewTBinaryProtocolFactoryDefault()

	client := timerpc.NewTimeServeClientFactory(transport, protocolFactory)

	// open connect
	transport.Open()
	defer socket.Close()

	//timeResult, err := client.GetCurrtentTime() 源代码,修改为
    timeResult, err := client.GetCurrtentTime(context.Background())
	
	if err != nil {
		fmt.Println(err.Error())
		os.Exit(2)
	}
	fmt.Println(timeResult)

}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值