本文整理匯總了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
}