コード例 #1
0
ファイル: ActiveMQ_QUEUE.cs プロジェクト: ggwhsd/CSharpStudy
        private void button2_Click(object sender, EventArgs e)
        {
            int i = int.Parse(textBox3.Text);

            for (int index = 0; index < i; index++)
            {
                QConsumer consumer = consumers[index];

                if (consumer != null)
                {
                    if (textBox_selector.Text.ToString() != "")
                    {
                        consumer.Selector = textBox_selector.Text.ToString();
                    }
                    consumer.Init();
                    consumer.SetTopic();
                    consumer.CreateConsumer();
                }
                else
                {
                    consumer = new QConsumer();
                    if (textBox_selector.Text.ToString() != "")
                    {
                        consumer.Selector = textBox_selector.Text.ToString();
                    }
                    consumers[index] = consumer;
                    consumer.Init();
                    consumer.SetTopic();
                    consumer.CreateConsumer();
                }
            }
        }
コード例 #2
0
ファイル: ActiveMQ_QUEUE.cs プロジェクト: ggwhsd/CSharpStudy
        private void button7_Click(object sender, EventArgs e)
        {
            int i = int.Parse(textBox3.Text);

            for (int index = 0; index < i; index++)
            {
                QConsumer consumer = consumers[index];
                if (consumer != null)
                {
                    consumer.cleanStart();
                }
            }
        }