本文整理汇总了Golang中thrift.TProtocol.WriteMapBegin方法的典型用法代码示例。如果您正苦于以下问题:Golang TProtocol.WriteMapBegin方法的具体用法?Golang TProtocol.WriteMapBegin怎么用?Golang TProtocol.WriteMapBegin使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类thrift.TProtocol
的用法示例。
在下文中一共展示了TProtocol.WriteMapBegin方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: writeField3
func (p *FindAllArgs) writeField3(oprot thrift.TProtocol) (err error) {
if p.Param != nil {
if err := oprot.WriteFieldBegin("param", thrift.MAP, 3); err != nil {
return fmt.Errorf("%T write field begin error 3:param: %s", p, err)
}
if err := oprot.WriteMapBegin(thrift.STRING, thrift.STRING, len(p.Param)); err != nil {
return fmt.Errorf("error writing map begin: %s")
}
for k, v := range p.Param {
if err := oprot.WriteString(string(k)); err != nil {
return fmt.Errorf("%T. (0) field write error: %s", p)
}
if err := oprot.WriteString(string(v)); err != nil {
return fmt.Errorf("%T. (0) field write error: %s", p)
}
}
if err := oprot.WriteMapEnd(); err != nil {
return fmt.Errorf("error writing map end: %s")
}
if err := oprot.WriteFieldEnd(); err != nil {
return fmt.Errorf("%T write field end error 3:param: %s", p, err)
}
}
return err
}