Use a connection factory instead of a connection builder.
[xudocci.git] / src / main / java / net / pterodactylus / irc / ConnectionFactory.java
1 package net.pterodactylus.irc;
2
3 /**
4  * Creates {@link Connection}s to IRC servers.
5  *
6  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
7  */
8 public interface ConnectionFactory {
9
10         Connection createConnection(String hostname, int port);
11
12 }