package server;

import java.io.DataInputStream;
import java.io.DataOutputStream;

import java.io.IOException;

public interface Connector {
	void establishConnection() throws IOException;
	void closeConnection() throws IOException;
	DataInputStream getInputStream() throws IOException;
	DataOutputStream getOutputStream() throws IOException;
//	void setTimeout(int timeout) throws IOException;
}
