本文整理汇总了Golang中github.com/upfluence/goutils/Godeps/_workspace/src/github.com/upfluence/thrift/lib/go/thrift.TProtocol.ReadMapBegin方法的典型用法代码示例。如果您正苦于以下问题:Golang TProtocol.ReadMapBegin方法的具体用法?Golang TProtocol.ReadMapBegin怎么用?Golang TProtocol.ReadMapBegin使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/upfluence/goutils/Godeps/_workspace/src/github.com/upfluence/thrift/lib/go/thrift.TProtocol
的用法示例。
在下文中一共展示了TProtocol.ReadMapBegin方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: ReadField0
func (p *BaseServiceGetInterfaceVersionsResult) ReadField0(iprot thrift.TProtocol) error {
_, _, size, err := iprot.ReadMapBegin()
if err != nil {
return thrift.PrependError("error reading map begin: ", err)
}
tMap := make(map[string]*version.Version, size)
p.Success = tMap
for i := 0; i < size; i++ {
var _key12 string
if v, err := iprot.ReadString(); err != nil {
return thrift.PrependError("error reading field 0: ", err)
} else {
_key12 = v
}
_val13 := version.NewVersion()
if err := _val13.Read(iprot); err != nil {
return thrift.PrependError(fmt.Sprintf("%T error reading struct: ", _val13), err)
}
p.Success[_key12] = _val13
}
if err := iprot.ReadMapEnd(); err != nil {
return thrift.PrependError("error reading map end: ", err)
}
return nil
}
示例2: ReadField0
func (p *MonitoringCollectResult) ReadField0(iprot thrift.TProtocol) error {
_, _, size, err := iprot.ReadMapBegin()
if err != nil {
return thrift.PrependError("error reading map begin: ", err)
}
tMap := make(Metrics, size)
p.Success = tMap
for i := 0; i < size; i++ {
var _key5 MetricID
if v, err := iprot.ReadString(); err != nil {
return thrift.PrependError("error reading field 0: ", err)
} else {
temp := MetricID(v)
_key5 = temp
}
var _val6 float64
if v, err := iprot.ReadDouble(); err != nil {
return thrift.PrependError("error reading field 0: ", err)
} else {
_val6 = v
}
p.Success[_key5] = _val6
}
if err := iprot.ReadMapEnd(); err != nil {
return thrift.PrependError("error reading map end: ", err)
}
return nil
}