1 package org.apache.axis2.util.threadpool; 2 3 /** 4 * Worker interface for Axis Workers. 5 * When a worker is handed over to the thread pool the method <code>doWork()</code> 6 * is called by the thread pool. 7 */ 8 public interface AxisWorker { 9 void doWork(); 10 } 11