 Documentation
      ¶
      Documentation
      ¶
    
    
  
    
  
    Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type CreateQueueResp ¶
type CreateQueueResp struct {
	Code      int64  `json:"code"`
	Message   string `json:"message"`
	QueueID   string `json:"queueId"`
	RequestID string `json:"requestId"`
}
    func CreateQueue ¶
func CreateQueue(options ...string) (*CreateQueueResp, error)
type DeleteQueueResp ¶
type DeleteQueueResp struct {
	Code      int64  `json:"code"`
	Message   string `json:"message"`
	RequestID string `json:"requestId"`
}
    func DeleteQueue ¶
func DeleteQueue(options ...string) (*DeleteQueueResp, error)
type ListQueueResp ¶
type ListQueueResp struct {
	Code      int64  `json:"code"`
	Message   string `json:"message"`
	QueueList []struct {
		QueueID   string `json:"queueId"`
		QueueName string `json:"queueName"`
	} `json:"queueList"`
	RequestID  string `json:"requestId"`
	TotalCount int64  `json:"totalCount"`
}
    func ListQueue ¶
func ListQueue(options ...string) (*ListQueueResp, error)
 Click to show internal directories. 
   Click to hide internal directories.