private Timer timer;
public AuctionAgentImpl(AgentConfig config) {
this.workQueue = new LinkedBlockingQueue<Work>();
this.client = new SocketClient(config.getPort(), config.getHost());
this.client.addListener(this);
this.client.setId(config.getId());
this.config = config;
}