1 22 package org.enhydra.jdbc.core; 23 24 import java.sql.SQLException ; 25 26 31 public interface JdbcThreadFactory { 32 33 42 public Thread getThread(Runnable target) throws SQLException ; 43 44 56 public Thread getThread(Runnable target, String name) throws SQLException ; 57 58 72 public Thread getThread(ThreadGroup group, Runnable target) 73 throws SQLException ; 74 75 92 public Thread getThread(ThreadGroup group, Runnable target, String name) 93 throws SQLException ; 94 } 95 | Popular Tags |