如何在Thrift中声明一个接口?我的意思是我有接口IClient,我在服务器的登录功能中使用它作为参数:
public interface IServer {
void login(Pers pers, IClient client) throws ConcursException;
}
我必须使用Thrift(Java服务器,C#客户端),我不知道如何声明在登录功能中使用它的接口。
这是IClient界面:
public interface IClient
{
void increasedNrParticipants(Proba proba);
}
谢谢!
答案 0 :(得分:0)
当tutorial和syntax documentation显示时,即使Thrift使用的语言被称为IDL(接口定义语言),也不会在Thrift中声明接口,而是声明{ {1}}:
service
除了内置的基本数据类型和容器之外,还必须声明任何类型:
service MyCoolService {
void login(1: Pers pers, 2: Client client) throws (1: ConcursException ce)
}
异常以相同的方式声明:
enum creditibility {
excellent, quite_good, medium_ok, could_be_worse, omg
}
struct Pers {
1: string surname
2: string firstname
3: i32 age
}
struct Client {
1: i32 client_number
2: string company_name
3: Pers contact
4: creditibility creditibility
}
上面语法的所有细微之处在Apache Thrift网站和今天市场上的all the other, additional documentation available中有更详细的解释。
通过使用Thrift编译器,从该IDL生成一些代码,然后像往常一样编译并链接到您的程序中。在我们的例子中,我们需要Java代码。假设,我们将上面的所有声明保存在名为exception ConcursException {
1: bool chapter7
2: bool chapter11
3: double outstanding_amount
}
的文件中,我们输入:
myfile.thrift
同样,强烈建议您浏览tutorial。这花费的时间并不多,但教授了很多关于Thrift如何工作的基础知识。
此外,请查看the test suite code以了解有关增强概念的更多信息,例如Thrift中的替代端点传输,分层传输和协议。
我有接口IClient,我在服务器
中的登录功能中使用它作为参数
与Thrift一起使用的所有类型必须是内置的基本类型,或者必须使用IDL定义。所以这种方法不起作用,因为thrift -gen java myfile.thrift
不是IDL定义的类型。
答案 1 :(得分:0)
有一个RPC框架使用名为“thrifty”的标准thrift协议,它与使用thrift IDL定义服务的效果相同,也就是说,thrify可以与使用thrift IDL的代码兼容,这是对于跨平台非常有用,它使用DotNetty(windows是iocp,linux是nio)
[ThriftStruct]
public class LogEntry
{
[ThriftConstructor]
public LogEntry([ThriftField(1)]String category, [ThriftField(2)]String message)
{
this.Category = category;
this.Message = message;
}
[ThriftField(1)]
public String Category { get; }
[ThriftField(2)]
public String Message { get; }
}
[ThriftService("scribe")]
public interface IScribe
{
[ThriftMethod("getMessages")]
List<LogEntry> GetMessages();
[ThriftMethod]
ResultCode Log(List<LogEntry> messages);
}
public class Scribe : IScribe
{
public List<LogEntry> GetMessages()
{
return new List<LogEntry>
{
new LogEntry { Category = "c1", Message = Guid.NewGuid().ToString() },
new LogEntry { Category = "c2", Message = Guid.NewGuid().ToString() },
new LogEntry { Category = "c3", Message = Guid.NewGuid().ToString() }
};
}
public ResultCode Log(List<LogEntry> messages)
{
return ResultCode.TRY_LATER;
}
}