本文整理汇总了Golang中github.com/apache/thrift/lib/go/thrift.TProtocol.WriteDouble方法的典型用法代码示例。如果您正苦于以下问题:Golang TProtocol.WriteDouble方法的具体用法?Golang TProtocol.WriteDouble怎么用?Golang TProtocol.WriteDouble使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/apache/thrift/lib/go/thrift.TProtocol
的用法示例。
在下文中一共展示了TProtocol.WriteDouble方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: writeField5
func (p *Moments) writeField5(oprot thrift.TProtocol) (err error) {
if err := oprot.WriteFieldBegin("m4", thrift.DOUBLE, 5); err != nil {
return fmt.Errorf("%T write field begin error 5:m4: %s", p, err)
}
if err := oprot.WriteDouble(float64(p.M4)); err != nil {
return fmt.Errorf("%T.m4 (5) field write error: %s", p, err)
}
if err := oprot.WriteFieldEnd(); err != nil {
return fmt.Errorf("%T write field end error 5:m4: %s", p, err)
}
return err
}
示例2: writeField4
func (p *Moments) writeField4(oprot thrift.TProtocol) (err error) {
if err := oprot.WriteFieldBegin("m3", thrift.DOUBLE, 4); err != nil {
return fmt.Errorf("%T write field begin error 4:m3: %s", p, err)
}
if err := oprot.WriteDouble(float64(p.M3)); err != nil {
return fmt.Errorf("%T.m3 (4) field write error: %s", p, err)
}
if err := oprot.WriteFieldEnd(); err != nil {
return fmt.Errorf("%T write field end error 4:m3: %s", p, err)
}
return err
}
示例3: writeField3
func (p *Moments) writeField3(oprot thrift.TProtocol) (err error) {
if err := oprot.WriteFieldBegin("m2", thrift.DOUBLE, 3); err != nil {
return fmt.Errorf("%T write field begin error 3:m2: %s", p, err)
}
if err := oprot.WriteDouble(float64(p.M2)); err != nil {
return fmt.Errorf("%T.m2 (3) field write error: %s", p, err)
}
if err := oprot.WriteFieldEnd(); err != nil {
return fmt.Errorf("%T write field end error 3:m2: %s", p, err)
}
return err
}
示例4: writeField2
func (p *Moments) writeField2(oprot thrift.TProtocol) (err error) {
if err := oprot.WriteFieldBegin("m1", thrift.DOUBLE, 2); err != nil {
return fmt.Errorf("%T write field begin error 2:m1: %s", p, err)
}
if err := oprot.WriteDouble(float64(p.M1)); err != nil {
return fmt.Errorf("%T.m1 (2) field write error: %s", p, err)
}
if err := oprot.WriteFieldEnd(); err != nil {
return fmt.Errorf("%T write field end error 2:m1: %s", p, err)
}
return err
}
示例5: writeField1
func (p *Annotation) writeField1(oprot thrift.TProtocol) (err error) {
if err := oprot.WriteFieldBegin("timestamp", thrift.DOUBLE, 1); err != nil {
return thrift.PrependError(fmt.Sprintf("%T write field begin error 1:timestamp: ", p), err)
}
if err := oprot.WriteDouble(float64(p.Timestamp)); err != nil {
return thrift.PrependError(fmt.Sprintf("%T.timestamp (1) field write error: ", p), err)
}
if err := oprot.WriteFieldEnd(); err != nil {
return thrift.PrependError(fmt.Sprintf("%T write field end error 1:timestamp: ", p), err)
}
return err
}
示例6: writeField3
func (p *BinaryAnnotation) writeField3(oprot thrift.TProtocol) (err error) {
if p.IsSetDoubleValue() {
if err := oprot.WriteFieldBegin("doubleValue", thrift.DOUBLE, 3); err != nil {
return thrift.PrependError(fmt.Sprintf("%T write field begin error 3:doubleValue: ", p), err)
}
if err := oprot.WriteDouble(float64(*p.DoubleValue)); err != nil {
return thrift.PrependError(fmt.Sprintf("%T.doubleValue (3) field write error: ", p), err)
}
if err := oprot.WriteFieldEnd(); err != nil {
return thrift.PrependError(fmt.Sprintf("%T write field end error 3:doubleValue: ", p), err)
}
}
return err
}