 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
Constants ¶
      View Source
      
  
const ( WSCommand_SetBlockTermSize = "setblocktermsize" WSCommand_BlockInput = "blockinput" WSCommand_Rpc = "rpc" )
Variables ¶
This section is empty.
Functions ¶
func WSCommandTypeUnionMeta ¶
func WSCommandTypeUnionMeta() tsgenmeta.TypeUnionMeta
Types ¶
type BlockInputWSCommand ¶
type BlockInputWSCommand struct {
	WSCommand   string `json:"wscommand" tstype:"\"blockinput\""`
	BlockId     string `json:"blockid"`
	InputData64 string `json:"inputdata64"`
}
    func (*BlockInputWSCommand) GetWSCommand ¶
func (cmd *BlockInputWSCommand) GetWSCommand() string
type SetBlockTermSizeWSCommand ¶
type SetBlockTermSizeWSCommand struct {
	WSCommand string           `json:"wscommand" tstype:"\"setblocktermsize\""`
	BlockId   string           `json:"blockid"`
	TermSize  waveobj.TermSize `json:"termsize"`
}
    func (*SetBlockTermSizeWSCommand) GetWSCommand ¶
func (cmd *SetBlockTermSizeWSCommand) GetWSCommand() string
type WSCommandType ¶
type WSCommandType interface {
	GetWSCommand() string
}
    func ParseWSCommandMap ¶
func ParseWSCommandMap(cmdMap map[string]any) (WSCommandType, error)
type WSRpcCommand ¶
type WSRpcCommand struct {
	WSCommand string              `json:"wscommand" tstype:"\"rpc\""`
	Message   *wshutil.RpcMessage `json:"message"`
}
    func (*WSRpcCommand) GetWSCommand ¶
func (cmd *WSRpcCommand) GetWSCommand() string
 Click to show internal directories. 
   Click to hide internal directories.