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