structs.go 853 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. package pubsub
  2. import (
  3. "encoding/json"
  4. )
  5. type AnswerType string
  6. const (
  7. Listen AnswerType = "LISTEN"
  8. Message AnswerType = "MESSAGE"
  9. Ping AnswerType = "PING"
  10. Pong AnswerType = "PONG"
  11. Reconnect AnswerType = "RECONNECT"
  12. Response AnswerType = "RESPONSE"
  13. Unlisten AnswerType = "UNLISTEN"
  14. )
  15. func (a AnswerType) String() string {
  16. return string(a)
  17. }
  18. type Answer struct {
  19. Type AnswerType `json:"type"`
  20. Data interface{} `json:"data,omitempty"`
  21. Error string `json:"error,omitempty"`
  22. Nonce string `json:"nonce,omitempty"`
  23. }
  24. func (a Answer) HasError() bool {
  25. return a.Error != ""
  26. }
  27. func (a Answer) JSON() []byte {
  28. bytes, _ := json.Marshal(a)
  29. return bytes
  30. }
  31. type AnswerDataTopics struct {
  32. Topics []string `json:"topics"`
  33. }
  34. func (a AnswerDataTopics) JSON() []byte {
  35. bytes, _ := json.Marshal(a)
  36. return bytes
  37. }