Beispiel #1
0
 public CmqAccount(string endpoint, string secretId, string secretKey)
 {
     this.client = new CmqClient(secretId, secretKey, endpoint, "/v2/index.php", "POST");
 }
Beispiel #2
0
 internal Queue(string queueName, CmqClient client)
 {
     this.queueName = queueName;
     this.client    = client;
 }
Beispiel #3
0
 internal Topic(string topicName, CmqClient client)
 {
     this.topicName = topicName;
     this.client    = client;
 }
Beispiel #4
0
 internal Subscription(string topicName, string subscriptionName, CmqClient client)
 {
     this.topicName        = topicName;
     this.subscriptionName = subscriptionName;
     this.client           = client;
 }