예제 #1
0
 internal Queue(string queueName, CmqClient client)
 {
     this.queueName = queueName;
     this.client    = client;
 }
예제 #2
0
 internal Subscription(string topicName, string subscriptionName, CmqClient client)
 {
     this.topicName        = topicName;
     this.subscriptionName = subscriptionName;
     this.client           = client;
 }
예제 #3
0
파일: Topic.cs 프로젝트: oventh/CMQSdk
 internal Topic(string topicName, CmqClient client)
 {
     this.topicName = topicName;
     this.client    = client;
 }
예제 #4
0
 public CmqAccount(string endpoint, string secretId, string secretKey)
 {
     this.client = new CmqClient(secretId, secretKey, endpoint, "/v2/index.php", "POST");
 }