51993a74531d773706a57774739fc0026ed4c9e3
[xudocci.git] / 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 }