1 24 25 package com.mckoi.database.jdbcserver; 26 27 import com.mckoi.database.Database; 28 import com.mckoi.database.User; 29 import java.io.IOException ; 30 31 37 38 interface ServerConnection { 39 40 51 boolean requestPending() throws IOException ; 52 53 68 void processRequest() throws IOException ; 69 70 75 void blockForRequest() throws IOException ; 76 77 84 void ping() throws IOException ; 85 86 89 void close() throws IOException ; 90 91 92 } 93 | Popular Tags |