pb

package
v0.0.16 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 8, 2021 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	FileChunk_State_name = map[int32]string{
		0: "NONE",
		2: "DONE",
		3: "ERROR",
	}
	FileChunk_State_value = map[string]int32{
		"NONE":  0,
		"DONE":  2,
		"ERROR": 3,
	}
)

Enum value maps for FileChunk_State.

View Source
var File_internal_pb_file_chunk_proto protoreflect.FileDescriptor
View Source
var File_internal_pb_node_proto protoreflect.FileDescriptor
View Source
var File_internal_pb_point_proto protoreflect.FileDescriptor
View Source
var File_internal_pb_sample_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type FileChunk

type FileChunk struct {
	State    FileChunk_State `protobuf:"varint,1,opt,name=state,proto3,enum=pb.FileChunk_State" json:"state,omitempty"`
	Seq      int32           `protobuf:"varint,2,opt,name=seq,proto3" json:"seq,omitempty"`
	Data     []byte          `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
	FileName string          `protobuf:"bytes,4,opt,name=fileName,proto3" json:"fileName,omitempty"`
	// contains filtered or unexported fields
}

func (*FileChunk) Descriptor deprecated

func (*FileChunk) Descriptor() ([]byte, []int)

Deprecated: Use FileChunk.ProtoReflect.Descriptor instead.

func (*FileChunk) GetData

func (x *FileChunk) GetData() []byte

func (*FileChunk) GetFileName

func (x *FileChunk) GetFileName() string

func (*FileChunk) GetSeq

func (x *FileChunk) GetSeq() int32

func (*FileChunk) GetState

func (x *FileChunk) GetState() FileChunk_State

func (*FileChunk) ProtoMessage

func (*FileChunk) ProtoMessage()

func (*FileChunk) ProtoReflect

func (x *FileChunk) ProtoReflect() protoreflect.Message

func (*FileChunk) Reset

func (x *FileChunk) Reset()

func (*FileChunk) String

func (x *FileChunk) String() string

type FileChunk_State

type FileChunk_State int32
const (
	FileChunk_NONE  FileChunk_State = 0
	FileChunk_DONE  FileChunk_State = 2
	FileChunk_ERROR FileChunk_State = 3
)

func (FileChunk_State) Descriptor

func (FileChunk_State) Enum

func (x FileChunk_State) Enum() *FileChunk_State

func (FileChunk_State) EnumDescriptor deprecated

func (FileChunk_State) EnumDescriptor() ([]byte, []int)

Deprecated: Use FileChunk_State.Descriptor instead.

func (FileChunk_State) Number

func (FileChunk_State) String

func (x FileChunk_State) String() string

func (FileChunk_State) Type

type NodeCmd added in v0.0.12

type NodeCmd struct {
	Id     string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Cmd    string `protobuf:"bytes,2,opt,name=cmd,proto3" json:"cmd,omitempty"`
	Detail string `protobuf:"bytes,3,opt,name=detail,proto3" json:"detail,omitempty"`
	// contains filtered or unexported fields
}

func (*NodeCmd) Descriptor deprecated added in v0.0.12

func (*NodeCmd) Descriptor() ([]byte, []int)

Deprecated: Use NodeCmd.ProtoReflect.Descriptor instead.

func (*NodeCmd) GetCmd added in v0.0.12

func (x *NodeCmd) GetCmd() string

func (*NodeCmd) GetDetail added in v0.0.12

func (x *NodeCmd) GetDetail() string

func (*NodeCmd) GetId added in v0.0.12

func (x *NodeCmd) GetId() string

func (*NodeCmd) ProtoMessage added in v0.0.12

func (*NodeCmd) ProtoMessage()

func (*NodeCmd) ProtoReflect added in v0.0.12

func (x *NodeCmd) ProtoReflect() protoreflect.Message

func (*NodeCmd) Reset added in v0.0.12

func (x *NodeCmd) Reset()

func (*NodeCmd) String added in v0.0.12

func (x *NodeCmd) String() string

type NodeVersion added in v0.0.12

type NodeVersion struct {
	Os  string `protobuf:"bytes,1,opt,name=os,proto3" json:"os,omitempty"`
	App string `protobuf:"bytes,2,opt,name=app,proto3" json:"app,omitempty"`
	Hw  string `protobuf:"bytes,3,opt,name=hw,proto3" json:"hw,omitempty"`
	// contains filtered or unexported fields
}

func (*NodeVersion) Descriptor deprecated added in v0.0.12

func (*NodeVersion) Descriptor() ([]byte, []int)

Deprecated: Use NodeVersion.ProtoReflect.Descriptor instead.

func (*NodeVersion) GetApp added in v0.0.12

func (x *NodeVersion) GetApp() string

func (*NodeVersion) GetHw added in v0.0.12

func (x *NodeVersion) GetHw() string

func (*NodeVersion) GetOs added in v0.0.12

func (x *NodeVersion) GetOs() string

func (*NodeVersion) ProtoMessage added in v0.0.12

func (*NodeVersion) ProtoMessage()

func (*NodeVersion) ProtoReflect added in v0.0.12

func (x *NodeVersion) ProtoReflect() protoreflect.Message

func (*NodeVersion) Reset added in v0.0.12

func (x *NodeVersion) Reset()

func (*NodeVersion) String added in v0.0.12

func (x *NodeVersion) String() string

type Point added in v0.0.11

type Point struct {
	Id       string               `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Type     string               `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
	Value    float32              `protobuf:"fixed32,4,opt,name=value,proto3" json:"value,omitempty"`
	Time     *timestamp.Timestamp `protobuf:"bytes,5,opt,name=time,proto3" json:"time,omitempty"`
	Duration *duration.Duration   `protobuf:"bytes,6,opt,name=duration,proto3" json:"duration,omitempty"`
	Index    int32                `protobuf:"varint,7,opt,name=index,proto3" json:"index,omitempty"`
	Text     string               `protobuf:"bytes,8,opt,name=text,proto3" json:"text,omitempty"`
	Min      float32              `protobuf:"fixed32,9,opt,name=min,proto3" json:"min,omitempty"`
	Max      float32              `protobuf:"fixed32,10,opt,name=max,proto3" json:"max,omitempty"`
	// contains filtered or unexported fields
}

func (*Point) Descriptor deprecated added in v0.0.11

func (*Point) Descriptor() ([]byte, []int)

Deprecated: Use Point.ProtoReflect.Descriptor instead.

func (*Point) GetDuration added in v0.0.11

func (x *Point) GetDuration() *duration.Duration

func (*Point) GetId added in v0.0.11

func (x *Point) GetId() string

func (*Point) GetIndex added in v0.0.11

func (x *Point) GetIndex() int32

func (*Point) GetMax added in v0.0.11

func (x *Point) GetMax() float32

func (*Point) GetMin added in v0.0.11

func (x *Point) GetMin() float32

func (*Point) GetText added in v0.0.11

func (x *Point) GetText() string

func (*Point) GetTime added in v0.0.11

func (x *Point) GetTime() *timestamp.Timestamp

func (*Point) GetType added in v0.0.11

func (x *Point) GetType() string

func (*Point) GetValue added in v0.0.11

func (x *Point) GetValue() float32

func (*Point) ProtoMessage added in v0.0.11

func (*Point) ProtoMessage()

func (*Point) ProtoReflect added in v0.0.11

func (x *Point) ProtoReflect() protoreflect.Message

func (*Point) Reset added in v0.0.11

func (x *Point) Reset()

func (*Point) String added in v0.0.11

func (x *Point) String() string

type Points added in v0.0.11

type Points struct {
	Points []*Point `protobuf:"bytes,1,rep,name=points,proto3" json:"points,omitempty"`
	// contains filtered or unexported fields
}

func (*Points) Descriptor deprecated added in v0.0.11

func (*Points) Descriptor() ([]byte, []int)

Deprecated: Use Points.ProtoReflect.Descriptor instead.

func (*Points) GetPoints added in v0.0.11

func (x *Points) GetPoints() []*Point

func (*Points) ProtoMessage added in v0.0.11

func (*Points) ProtoMessage()

func (*Points) ProtoReflect added in v0.0.11

func (x *Points) ProtoReflect() protoreflect.Message

func (*Points) Reset added in v0.0.11

func (x *Points) Reset()

func (*Points) String added in v0.0.11

func (x *Points) String() string

type Sample

type Sample struct {
	Id       string               `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Type     string               `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
	Value    float32              `protobuf:"fixed32,4,opt,name=value,proto3" json:"value,omitempty"`
	Time     *timestamp.Timestamp `protobuf:"bytes,5,opt,name=time,proto3" json:"time,omitempty"`
	Duration *duration.Duration   `protobuf:"bytes,6,opt,name=duration,proto3" json:"duration,omitempty"`
	// contains filtered or unexported fields
}

func (*Sample) Descriptor deprecated

func (*Sample) Descriptor() ([]byte, []int)

Deprecated: Use Sample.ProtoReflect.Descriptor instead.

func (*Sample) GetDuration

func (x *Sample) GetDuration() *duration.Duration

func (*Sample) GetId

func (x *Sample) GetId() string

func (*Sample) GetTime

func (x *Sample) GetTime() *timestamp.Timestamp

func (*Sample) GetType

func (x *Sample) GetType() string

func (*Sample) GetValue

func (x *Sample) GetValue() float32

func (*Sample) ProtoMessage

func (*Sample) ProtoMessage()

func (*Sample) ProtoReflect

func (x *Sample) ProtoReflect() protoreflect.Message

func (*Sample) Reset

func (x *Sample) Reset()

func (*Sample) String

func (x *Sample) String() string

type Samples

type Samples struct {
	Samples []*Sample `protobuf:"bytes,1,rep,name=samples,proto3" json:"samples,omitempty"`
	// contains filtered or unexported fields
}

func (*Samples) Descriptor deprecated

func (*Samples) Descriptor() ([]byte, []int)

Deprecated: Use Samples.ProtoReflect.Descriptor instead.

func (*Samples) GetSamples

func (x *Samples) GetSamples() []*Sample

func (*Samples) ProtoMessage

func (*Samples) ProtoMessage()

func (*Samples) ProtoReflect

func (x *Samples) ProtoReflect() protoreflect.Message

func (*Samples) Reset

func (x *Samples) Reset()

func (*Samples) String

func (x *Samples) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL