1 28 package org.objectweb.carol.rmi.jrmp.server; 29 30 import java.io.IOException ; 32 33 38 public interface JUnicastThreadFactory { 39 40 46 public Thread getThread(Runnable target) throws IOException ; 47 48 57 public Thread getThread(Runnable target, String name) throws IOException ; 58 59 68 public Thread getThread(ThreadGroup group, Runnable target) throws IOException ; 69 70 81 public Thread getThread(ThreadGroup group, Runnable target, String name) throws IOException ; 82 } | Popular Tags |