次のコードの場合
struct UserProfile {
1: i32 uid,
2: string name,
3: string blurb
}
service UserStorage {
void store(1: UserProfile user),
UserProfile retrieve(1: i32 uid)
}
Apache Thrift
サーバー側でもUserProfile
オブジェクトを参照するコードを生成します。どうすればそれをどのように動作させることができcustom object
ますか?
私が先に進んでサーバーを実装し、顧客が独自の言語クライアントを開発できるようにします。