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)
func (*CreateQueueResp) String ¶ added in v1.1.0
func (r *CreateQueueResp) String(args ...interface{}) (string, 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)
func (*DeleteQueueResp) String ¶ added in v1.1.0
func (r *DeleteQueueResp) String(args ...interface{}) (string, 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)
func (*ListQueueResp) String ¶ added in v1.1.0
func (r *ListQueueResp) String(args ...interface{}) (string, error)
Click to show internal directories.
Click to hide internal directories.