public InQueue(String hostname,int port)
{
inQueue = new PriorityQueue<Request>(100);
holdList = new ArrayList<String>();
destinationList = new HashMap<String, Boolean>();
status = new Status(nodeStatus.AVAILABLE);
myadr = new InetSocketAddress(hostname,port);
logEnable = false;
}