eventv1

package
v1.34.1-20240519093930... Latest Latest
Warning

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

Go to latest
Published: unknown License: MIT Imports: 11 Imported by: 5

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_testrepo_event_v1_event_proto protoreflect.FileDescriptor
View Source
var File_testrepo_event_v1_event_service_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type CreateEventRequest

type CreateEventRequest struct {
	Event *Event `protobuf:"bytes,1,opt,name=event,proto3" json:"event,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateEventRequest) Descriptor deprecated

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

Deprecated: Use CreateEventRequest.ProtoReflect.Descriptor instead.

func (*CreateEventRequest) GetEvent

func (x *CreateEventRequest) GetEvent() *Event

func (*CreateEventRequest) ProtoMessage

func (*CreateEventRequest) ProtoMessage()

func (*CreateEventRequest) ProtoReflect

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

func (*CreateEventRequest) Reset

func (x *CreateEventRequest) Reset()

func (*CreateEventRequest) String

func (x *CreateEventRequest) String() string

type CreateEventResponse

type CreateEventResponse struct {
	Event *Event `protobuf:"bytes,1,opt,name=event,proto3" json:"event,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateEventResponse) Descriptor deprecated

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

Deprecated: Use CreateEventResponse.ProtoReflect.Descriptor instead.

func (*CreateEventResponse) GetEvent

func (x *CreateEventResponse) GetEvent() *Event

func (*CreateEventResponse) ProtoMessage

func (*CreateEventResponse) ProtoMessage()

func (*CreateEventResponse) ProtoReflect

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

func (*CreateEventResponse) Reset

func (x *CreateEventResponse) Reset()

func (*CreateEventResponse) String

func (x *CreateEventResponse) String() string

type DeleteEventRequest

type DeleteEventRequest struct {
	EventSelector *v1.EventSelector `protobuf:"bytes,1,opt,name=event_selector,json=eventSelector,proto3" json:"event_selector,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteEventRequest) Descriptor deprecated

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

Deprecated: Use DeleteEventRequest.ProtoReflect.Descriptor instead.

func (*DeleteEventRequest) GetEventSelector

func (x *DeleteEventRequest) GetEventSelector() *v1.EventSelector

func (*DeleteEventRequest) ProtoMessage

func (*DeleteEventRequest) ProtoMessage()

func (*DeleteEventRequest) ProtoReflect

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

func (*DeleteEventRequest) Reset

func (x *DeleteEventRequest) Reset()

func (*DeleteEventRequest) String

func (x *DeleteEventRequest) String() string

type DeleteEventResponse

type DeleteEventResponse struct {
	// contains filtered or unexported fields
}

func (*DeleteEventResponse) Descriptor deprecated

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

Deprecated: Use DeleteEventResponse.ProtoReflect.Descriptor instead.

func (*DeleteEventResponse) ProtoMessage

func (*DeleteEventResponse) ProtoMessage()

func (*DeleteEventResponse) ProtoReflect

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

func (*DeleteEventResponse) Reset

func (x *DeleteEventResponse) Reset()

func (*DeleteEventResponse) String

func (x *DeleteEventResponse) String() string

type Event

type Event struct {
	Id                uint32                 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
	Key               string                 `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	Name              string                 `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	Description       string                 `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty"`
	EventTime         *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=event_time,json=eventTime,proto3" json:"event_time,omitempty"`
	RaceloggerVersion string                 `protobuf:"bytes,6,opt,name=racelogger_version,json=raceloggerVersion,proto3" json:"racelogger_version,omitempty"`
	TeamRacing        bool                   `protobuf:"varint,7,opt,name=team_racing,json=teamRacing,proto3" json:"team_racing,omitempty"`
	MultiClass        bool                   `protobuf:"varint,8,opt,name=multi_class,json=multiClass,proto3" json:"multi_class,omitempty"`
	NumCarTypes       uint32                 `protobuf:"varint,9,opt,name=num_car_types,json=numCarTypes,proto3" json:"num_car_types,omitempty"`
	NumCarClasses     uint32                 `protobuf:"varint,10,opt,name=num_car_classes,json=numCarClasses,proto3" json:"num_car_classes,omitempty"`
	IrSessionId       int32                  `protobuf:"varint,11,opt,name=ir_session_id,json=irSessionId,proto3" json:"ir_session_id,omitempty"`
	TrackId           uint32                 `protobuf:"varint,12,opt,name=track_id,json=trackId,proto3" json:"track_id,omitempty"`
	Sessions          []*Session             `protobuf:"bytes,13,rep,name=sessions,proto3" json:"sessions,omitempty"`
	PitSpeed          float32                `protobuf:"fixed32,14,opt,name=pit_speed,json=pitSpeed,proto3" json:"pit_speed,omitempty"`
	ReplayInfo        *ReplayInfo            `protobuf:"bytes,15,opt,name=replay_info,json=replayInfo,proto3" json:"replay_info,omitempty"`
	// contains filtered or unexported fields
}

Event

func (*Event) Descriptor deprecated

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

Deprecated: Use Event.ProtoReflect.Descriptor instead.

func (*Event) GetDescription

func (x *Event) GetDescription() string

func (*Event) GetEventTime

func (x *Event) GetEventTime() *timestamppb.Timestamp

func (*Event) GetId

func (x *Event) GetId() uint32

func (*Event) GetIrSessionId

func (x *Event) GetIrSessionId() int32

func (*Event) GetKey

func (x *Event) GetKey() string

func (*Event) GetMultiClass

func (x *Event) GetMultiClass() bool

func (*Event) GetName

func (x *Event) GetName() string

func (*Event) GetNumCarClasses

func (x *Event) GetNumCarClasses() uint32

func (*Event) GetNumCarTypes

func (x *Event) GetNumCarTypes() uint32

func (*Event) GetPitSpeed

func (x *Event) GetPitSpeed() float32

func (*Event) GetRaceloggerVersion

func (x *Event) GetRaceloggerVersion() string

func (*Event) GetReplayInfo

func (x *Event) GetReplayInfo() *ReplayInfo

func (*Event) GetSessions

func (x *Event) GetSessions() []*Session

func (*Event) GetTeamRacing

func (x *Event) GetTeamRacing() bool

func (*Event) GetTrackId

func (x *Event) GetTrackId() uint32

func (*Event) ProtoMessage

func (*Event) ProtoMessage()

func (*Event) ProtoReflect

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

func (*Event) Reset

func (x *Event) Reset()

func (*Event) String

func (x *Event) String() string

type GetEventRequest

type GetEventRequest struct {
	EventSelector *v1.EventSelector `protobuf:"bytes,1,opt,name=event_selector,json=eventSelector,proto3" json:"event_selector,omitempty"`
	// contains filtered or unexported fields
}

func (*GetEventRequest) Descriptor deprecated

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

Deprecated: Use GetEventRequest.ProtoReflect.Descriptor instead.

func (*GetEventRequest) GetEventSelector

func (x *GetEventRequest) GetEventSelector() *v1.EventSelector

func (*GetEventRequest) ProtoMessage

func (*GetEventRequest) ProtoMessage()

func (*GetEventRequest) ProtoReflect

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

func (*GetEventRequest) Reset

func (x *GetEventRequest) Reset()

func (*GetEventRequest) String

func (x *GetEventRequest) String() string

type GetEventResponse

type GetEventResponse struct {
	Event    *Event              `protobuf:"bytes,1,opt,name=event,proto3" json:"event,omitempty"`
	Track    *v11.Track          `protobuf:"bytes,2,opt,name=track,proto3" json:"track,omitempty"`
	Analysis *v12.Analysis       `protobuf:"bytes,3,opt,name=analysis,proto3" json:"analysis,omitempty"`
	State    *v13.StateContainer `protobuf:"bytes,4,opt,name=state,proto3" json:"state,omitempty"`
	Car      *v14.CarContainer   `protobuf:"bytes,5,opt,name=car,proto3" json:"car,omitempty"`
	Speedmap *v15.Speedmap       `protobuf:"bytes,6,opt,name=speedmap,proto3" json:"speedmap,omitempty"`
	// contains filtered or unexported fields
}

func (*GetEventResponse) Descriptor deprecated

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

Deprecated: Use GetEventResponse.ProtoReflect.Descriptor instead.

func (*GetEventResponse) GetAnalysis

func (x *GetEventResponse) GetAnalysis() *v12.Analysis

func (*GetEventResponse) GetCar

func (x *GetEventResponse) GetCar() *v14.CarContainer

func (*GetEventResponse) GetEvent

func (x *GetEventResponse) GetEvent() *Event

func (*GetEventResponse) GetSpeedmap

func (x *GetEventResponse) GetSpeedmap() *v15.Speedmap

func (*GetEventResponse) GetState

func (x *GetEventResponse) GetState() *v13.StateContainer

func (*GetEventResponse) GetTrack

func (x *GetEventResponse) GetTrack() *v11.Track

func (*GetEventResponse) ProtoMessage

func (*GetEventResponse) ProtoMessage()

func (*GetEventResponse) ProtoReflect

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

func (*GetEventResponse) Reset

func (x *GetEventResponse) Reset()

func (*GetEventResponse) String

func (x *GetEventResponse) String() string

type GetEventsRequest

type GetEventsRequest struct {
	// contains filtered or unexported fields
}

func (*GetEventsRequest) Descriptor deprecated

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

Deprecated: Use GetEventsRequest.ProtoReflect.Descriptor instead.

func (*GetEventsRequest) ProtoMessage

func (*GetEventsRequest) ProtoMessage()

func (*GetEventsRequest) ProtoReflect

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

func (*GetEventsRequest) Reset

func (x *GetEventsRequest) Reset()

func (*GetEventsRequest) String

func (x *GetEventsRequest) String() string

type GetEventsResponse

type GetEventsResponse struct {
	Event *Event `protobuf:"bytes,1,opt,name=event,proto3" json:"event,omitempty"`
	// contains filtered or unexported fields
}

func (*GetEventsResponse) Descriptor deprecated

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

Deprecated: Use GetEventsResponse.ProtoReflect.Descriptor instead.

func (*GetEventsResponse) GetEvent

func (x *GetEventsResponse) GetEvent() *Event

func (*GetEventsResponse) ProtoMessage

func (*GetEventsResponse) ProtoMessage()

func (*GetEventsResponse) ProtoReflect

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

func (*GetEventsResponse) Reset

func (x *GetEventsResponse) Reset()

func (*GetEventsResponse) String

func (x *GetEventsResponse) String() string

type GetLatestEventsRequest

type GetLatestEventsRequest struct {
	Offset int32 `protobuf:"varint,1,opt,name=offset,proto3" json:"offset,omitempty"`
	Limit  int32 `protobuf:"varint,2,opt,name=limit,proto3" json:"limit,omitempty"`
	// contains filtered or unexported fields
}

func (*GetLatestEventsRequest) Descriptor deprecated

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

Deprecated: Use GetLatestEventsRequest.ProtoReflect.Descriptor instead.

func (*GetLatestEventsRequest) GetLimit

func (x *GetLatestEventsRequest) GetLimit() int32

func (*GetLatestEventsRequest) GetOffset

func (x *GetLatestEventsRequest) GetOffset() int32

func (*GetLatestEventsRequest) ProtoMessage

func (*GetLatestEventsRequest) ProtoMessage()

func (*GetLatestEventsRequest) ProtoReflect

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

func (*GetLatestEventsRequest) Reset

func (x *GetLatestEventsRequest) Reset()

func (*GetLatestEventsRequest) String

func (x *GetLatestEventsRequest) String() string

type GetLatestEventsResponse

type GetLatestEventsResponse struct {
	Events []*Event `protobuf:"bytes,1,rep,name=events,proto3" json:"events,omitempty"`
	// contains filtered or unexported fields
}

func (*GetLatestEventsResponse) Descriptor deprecated

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

Deprecated: Use GetLatestEventsResponse.ProtoReflect.Descriptor instead.

func (*GetLatestEventsResponse) GetEvents

func (x *GetLatestEventsResponse) GetEvents() []*Event

func (*GetLatestEventsResponse) ProtoMessage

func (*GetLatestEventsResponse) ProtoMessage()

func (*GetLatestEventsResponse) ProtoReflect

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

func (*GetLatestEventsResponse) Reset

func (x *GetLatestEventsResponse) Reset()

func (*GetLatestEventsResponse) String

func (x *GetLatestEventsResponse) String() string

type ReplayInfo

type ReplayInfo struct {
	MinTimestamp   *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=min_timestamp,json=minTimestamp,proto3" json:"min_timestamp,omitempty"`
	MinSessionTime float32                `protobuf:"fixed32,2,opt,name=min_session_time,json=minSessionTime,proto3" json:"min_session_time,omitempty"`
	MaxSessionTime float32                `protobuf:"fixed32,3,opt,name=max_session_time,json=maxSessionTime,proto3" json:"max_session_time,omitempty"`
	// contains filtered or unexported fields
}

func (*ReplayInfo) Descriptor deprecated

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

Deprecated: Use ReplayInfo.ProtoReflect.Descriptor instead.

func (*ReplayInfo) GetMaxSessionTime

func (x *ReplayInfo) GetMaxSessionTime() float32

func (*ReplayInfo) GetMinSessionTime

func (x *ReplayInfo) GetMinSessionTime() float32

func (*ReplayInfo) GetMinTimestamp

func (x *ReplayInfo) GetMinTimestamp() *timestamppb.Timestamp

func (*ReplayInfo) ProtoMessage

func (*ReplayInfo) ProtoMessage()

func (*ReplayInfo) ProtoReflect

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

func (*ReplayInfo) Reset

func (x *ReplayInfo) Reset()

func (*ReplayInfo) String

func (x *ReplayInfo) String() string

type Session

type Session struct {
	Num  uint32 `protobuf:"varint,1,opt,name=num,proto3" json:"num,omitempty"`
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*Session) Descriptor deprecated

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

Deprecated: Use Session.ProtoReflect.Descriptor instead.

func (*Session) GetName

func (x *Session) GetName() string

func (*Session) GetNum

func (x *Session) GetNum() uint32

func (*Session) ProtoMessage

func (*Session) ProtoMessage()

func (*Session) ProtoReflect

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

func (*Session) Reset

func (x *Session) Reset()

func (*Session) String

func (x *Session) String() string

Jump to

Keyboard shortcuts

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