Documentation
¶
Index ¶
- Constants
- func HandleCanvasDeleted(messageBody []byte, wsHub *ws.Hub) error
- func HandleCanvasEventCreated(messageBody []byte, wsHub *ws.Hub) error
- func HandleCanvasExecution(messageBody []byte, wsHub *ws.Hub) error
- func HandleCanvasUpdated(messageBody []byte, wsHub *ws.Hub) error
- func HandleQueueItemConsumed(messageBody []byte, wsHub *ws.Hub) error
- func HandleQueueItemCreated(messageBody []byte, wsHub *ws.Hub) error
- type CanvasEventWebsocketEvent
- type CanvasStatePayload
- type CanvasStateWebsocketEvent
- type ExecutionStateWebsocketEvent
- type QueueItemWebsocketEvent
Constants ¶
View Source
const ( CanvasUpdatedEvent = "canvas_updated" CanvasDeletedEvent = "canvas_deleted" )
View Source
const ( ExecutionCreatedEvent = "execution_created" ExecutionFinishedEvent = "execution_finished" ExecutionStartedEvent = "execution_started" )
View Source
const ( QueueItemCreatedEvent = "queue_item_created" QueueItemConsumedEvent = "queue_item_consumed" )
Variables ¶
This section is empty.
Functions ¶
func HandleCanvasDeleted ¶ added in v0.10.0
func HandleCanvasEventCreated ¶ added in v0.6.0
func HandleCanvasExecution ¶ added in v0.6.0
func HandleCanvasUpdated ¶ added in v0.10.0
func HandleQueueItemConsumed ¶ added in v0.6.0
Types ¶
type CanvasEventWebsocketEvent ¶ added in v0.6.0
type CanvasEventWebsocketEvent struct {
Event string `json:"event"`
Payload json.RawMessage `json:"payload"`
}
type CanvasStatePayload ¶ added in v0.10.0
type CanvasStatePayload struct {
ID string `json:"id"`
}
type CanvasStateWebsocketEvent ¶ added in v0.10.0
type CanvasStateWebsocketEvent struct {
Event string `json:"event"`
Payload CanvasStatePayload `json:"payload"`
}
type ExecutionStateWebsocketEvent ¶
type ExecutionStateWebsocketEvent struct {
Event string `json:"event"`
Payload json.RawMessage `json:"payload"`
}
type QueueItemWebsocketEvent ¶
type QueueItemWebsocketEvent struct {
Event string `json:"event"`
Payload json.RawMessage `json:"payload"`
}
Click to show internal directories.
Click to hide internal directories.