package cdn //Licensed under the Apache License, Version 2.0 (the "License"); //you may not use this file except in compliance with the License. //You may obtain a copy of the License at // //http://www.apache.org/licenses/LICENSE-2.0 // //Unless required by applicable law or agreed to in writing, software //distributed under the License is distributed on an "AS IS" BASIS, //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. //See the License for the specific language governing permissions and //limitations under the License. // // Code generated by Alibaba Cloud SDK Code Generator. // Changes may cause incorrect behavior and will be lost if the code is regenerated. import ( "github.com/aliyun/alibaba-cloud-sdk-go/sdk/requests" "github.com/aliyun/alibaba-cloud-sdk-go/sdk/responses" ) // DescribeLiveStreamRoomUserNumber invokes the cdn.DescribeLiveStreamRoomUserNumber API synchronously // api document: https://help.aliyun.com/api/cdn/describelivestreamroomusernumber.html func (client *Client) DescribeLiveStreamRoomUserNumber(request *DescribeLiveStreamRoomUserNumberRequest) (response *DescribeLiveStreamRoomUserNumberResponse, err error) { response = CreateDescribeLiveStreamRoomUserNumberResponse() err = client.DoAction(request, response) return } // DescribeLiveStreamRoomUserNumberWithChan invokes the cdn.DescribeLiveStreamRoomUserNumber API asynchronously // api document: https://help.aliyun.com/api/cdn/describelivestreamroomusernumber.html // asynchronous document: https://help.aliyun.com/document_detail/66220.html func (client *Client) DescribeLiveStreamRoomUserNumberWithChan(request *DescribeLiveStreamRoomUserNumberRequest) (<-chan *DescribeLiveStreamRoomUserNumberResponse, <-chan error) { responseChan := make(chan *DescribeLiveStreamRoomUserNumberResponse, 1) errChan := make(chan error, 1) err := client.AddAsyncTask(func() { defer close(responseChan) defer close(errChan) response, err := client.DescribeLiveStreamRoomUserNumber(request) if err != nil { errChan <- err } else { responseChan <- response } }) if err != nil { errChan <- err close(responseChan) close(errChan) } return responseChan, errChan } // DescribeLiveStreamRoomUserNumberWithCallback invokes the cdn.DescribeLiveStreamRoomUserNumber API asynchronously // api document: https://help.aliyun.com/api/cdn/describelivestreamroomusernumber.html // asynchronous document: https://help.aliyun.com/document_detail/66220.html func (client *Client) DescribeLiveStreamRoomUserNumberWithCallback(request *DescribeLiveStreamRoomUserNumberRequest, callback func(response *DescribeLiveStreamRoomUserNumberResponse, err error)) <-chan int { result := make(chan int, 1) err := client.AddAsyncTask(func() { var response *DescribeLiveStreamRoomUserNumberResponse var err error defer close(result) response, err = client.DescribeLiveStreamRoomUserNumber(request) callback(response, err) result <- 1 }) if err != nil { defer close(result) callback(nil, err) result <- 0 } return result } // DescribeLiveStreamRoomUserNumberRequest is the request struct for api DescribeLiveStreamRoomUserNumber type DescribeLiveStreamRoomUserNumberRequest struct { *requests.RpcRequest AppName string `position:"Query" name:"AppName"` SecurityToken string `position:"Query" name:"SecurityToken"` HlsSwitch string `position:"Query" name:"HlsSwitch"` DomainName string `position:"Query" name:"DomainName"` EndTime string `position:"Query" name:"EndTime"` StartTime string `position:"Query" name:"StartTime"` OwnerId requests.Integer `position:"Query" name:"OwnerId"` StreamName string `position:"Query" name:"StreamName"` } // DescribeLiveStreamRoomUserNumberResponse is the response struct for api DescribeLiveStreamRoomUserNumber type DescribeLiveStreamRoomUserNumberResponse struct { *responses.BaseResponse RequestId string `json:"RequestId" xml:"RequestId"` TotalUserNumber int `json:"TotalUserNumber" xml:"TotalUserNumber"` OnlineUserInfo OnlineUserInfoInDescribeLiveStreamRoomUserNumber `json:"OnlineUserInfo" xml:"OnlineUserInfo"` } // CreateDescribeLiveStreamRoomUserNumberRequest creates a request to invoke DescribeLiveStreamRoomUserNumber API func CreateDescribeLiveStreamRoomUserNumberRequest() (request *DescribeLiveStreamRoomUserNumberRequest) { request = &DescribeLiveStreamRoomUserNumberRequest{ RpcRequest: &requests.RpcRequest{}, } request.InitWithApiInfo("Cdn", "2014-11-11", "DescribeLiveStreamRoomUserNumber", "", "") return } // CreateDescribeLiveStreamRoomUserNumberResponse creates a response to parse from DescribeLiveStreamRoomUserNumber response func CreateDescribeLiveStreamRoomUserNumberResponse() (response *DescribeLiveStreamRoomUserNumberResponse) { response = &DescribeLiveStreamRoomUserNumberResponse{ BaseResponse: &responses.BaseResponse{}, } return }