package matchmaker

import "github.com/Diarkis/diarkis/proto/go/matchmaker"

Index

Constants

const CancelTicketBackfillCmd uint16 = 228

CancelTicketBackfillCmd represents the command ID of the protocol's command ID.

[NOTE] The value is optional and if cmd is not given in the definition JSON, it will be 0.
const CancelTicketBackfillVer uint8 = 1

CancelTicketBackfillVer represents the ver of the protocol's command.

[NOTE] The value is optional and if ver is not given in the definition JSON, it will be 0.
const TicketBackfillCmd uint16 = 227

TicketBackfillCmd represents the command ID of the protocol's command ID.

[NOTE] The value is optional and if cmd is not given in the definition JSON, it will be 0.
const TicketBackfillVer uint8 = 1

TicketBackfillVer represents the ver of the protocol's command.

[NOTE] The value is optional and if ver is not given in the definition JSON, it will be 0.

Types

type CancelTicketBackfill

type CancelTicketBackfill struct {
	// Command version of the protocol
	Ver uint8
	// Command ID of the protocol
	Cmd uint16
	// Ticket Type
	TicketType uint8
}

CancelTicketBackfill represents the command protocol data structure.

func NewCancelTicketBackfill

func NewCancelTicketBackfill() *CancelTicketBackfill

NewCancelTicketBackfill creates a new instance of CancelTicketBackfill struct.

func (*CancelTicketBackfill) GetCmd

func (proto *CancelTicketBackfill) GetCmd() uint16

func (*CancelTicketBackfill) GetVer

func (proto *CancelTicketBackfill) GetVer() uint8

func (*CancelTicketBackfill) Pack

func (proto *CancelTicketBackfill) Pack() []byte

Pack encodes CancelTicketBackfill struct to a byte array to be delivered over the command.

func (*CancelTicketBackfill) PackedSize

func (proto *CancelTicketBackfill) PackedSize() int

PackedSize returns the estimated packed size of the struct.

func (*CancelTicketBackfill) String

func (proto *CancelTicketBackfill) String() string

func (*CancelTicketBackfill) Unpack

func (proto *CancelTicketBackfill) Unpack(bytes []byte) error

Unpack decodes the command payload byte array to CancelTicketBackfill struct.

type TicketBackfill

type TicketBackfill struct {
	// Command version of the protocol
	Ver uint8
	// Command ID of the protocol
	Cmd uint16
	// Ticket Type
	TicketType uint8
}

TicketBackfill represents the command protocol data structure.

func NewTicketBackfill

func NewTicketBackfill() *TicketBackfill

NewTicketBackfill creates a new instance of TicketBackfill struct.

func (*TicketBackfill) GetCmd

func (proto *TicketBackfill) GetCmd() uint16

func (*TicketBackfill) GetVer

func (proto *TicketBackfill) GetVer() uint8

func (*TicketBackfill) Pack

func (proto *TicketBackfill) Pack() []byte

Pack encodes TicketBackfill struct to a byte array to be delivered over the command.

func (*TicketBackfill) PackedSize

func (proto *TicketBackfill) PackedSize() int

PackedSize returns the estimated packed size of the struct.

func (*TicketBackfill) String

func (proto *TicketBackfill) String() string

func (*TicketBackfill) Unpack

func (proto *TicketBackfill) Unpack(bytes []byte) error

Unpack decodes the command payload byte array to TicketBackfill struct.