func decodeFloatPoint(pb *internal.Point) *FloatPoint { return &FloatPoint{ Name: pb.GetName(), Tags: newTagsID(pb.GetTags()), Time: pb.GetTime(), Nil: pb.GetNil(), Aux: decodeAux(pb.Aux), Value: pb.GetFloatValue(), } }
func decodeStringPoint(pb *internal.Point) *StringPoint { return &StringPoint{ Name: pb.GetName(), Tags: newTagsID(pb.GetTags()), Time: pb.GetTime(), Nil: pb.GetNil(), Aux: decodeAux(pb.Aux), Value: pb.GetStringValue(), } }
func decodeBooleanPoint(pb *internal.Point) *BooleanPoint { return &BooleanPoint{ Name: pb.GetName(), Tags: newTagsID(pb.GetTags()), Time: pb.GetTime(), Nil: pb.GetNil(), Aux: decodeAux(pb.Aux), Value: pb.GetBooleanValue(), } }
func decodeIntegerPoint(pb *internal.Point) *IntegerPoint { return &IntegerPoint{ Name: pb.GetName(), Tags: newTagsID(pb.GetTags()), Time: pb.GetTime(), Nil: pb.GetNil(), Aux: decodeAux(pb.Aux), Value: pb.GetIntegerValue(), } }