package com.huawei.esb.cle;
import java.util.ArrayList;
import java.util.List;
public class TestCle
{
public static List listAll = new ArrayList();
public static void main(String[] args)
{
// 模似队列一直加数据
for (int i = 0; i < 10000; i++)
{
CleEntity entity = new CleEntity(String.valueOf(i), "Xgw" + i);
listAll.add(entity);
}
initThread(3);
}
public static void initThread(int num)
{
if (num < 0)
{
}
else
{
for (int i = 0; i < num; i++)
{
SetCLEEntity setCLEEntity = new SetCLEEntity();
setCLEEntity.start();
GetCLEEntity getCLEEntity = new GetCLEEntity();
getCLEEntity.start();
}
}
}
}