KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > exoplatform > services > threadpool > ThreadPoolService


1 /*
2  * Copyright 2001-2003 The eXo platform SARL All rights reserved.
3  * Please look at license.txt in info directory for more license detail.
4  */

5
6 package org.exoplatform.services.threadpool;
7
8 /**
9  * @author Mestrallet Benjamin
10  * benjmestrallet@users.sourceforge.net
11  */

12 public interface ThreadPoolService {
13
14   public void execute(Runnable JavaDoc task)
15       throws InterruptedException JavaDoc;
16
17 }
18
Popular Tags