2014-10-13 23:06:45 +00:00
|
|
|
package eu.siacs.conversations.http;
|
|
|
|
|
2014-10-14 17:27:49 +00:00
|
|
|
import java.net.URL;
|
2014-10-13 23:06:45 +00:00
|
|
|
import java.util.List;
|
|
|
|
import java.util.concurrent.CopyOnWriteArrayList;
|
|
|
|
|
|
|
|
import eu.siacs.conversations.entities.Message;
|
2014-10-14 10:02:48 +00:00
|
|
|
import eu.siacs.conversations.services.AbstractConnectionManager;
|
2014-10-13 23:06:45 +00:00
|
|
|
import eu.siacs.conversations.services.XmppConnectionService;
|
|
|
|
|
|
|
|
public class HttpConnectionManager extends AbstractConnectionManager {
|
|
|
|
|
|
|
|
public HttpConnectionManager(XmppConnectionService service) {
|
|
|
|
super(service);
|
|
|
|
}
|
|
|
|
|
|
|
|
private List<HttpConnection> connections = new CopyOnWriteArrayList<HttpConnection>();
|
|
|
|
|
|
|
|
|
|
|
|
public HttpConnection createNewConnection(Message message) {
|
|
|
|
HttpConnection connection = new HttpConnection(this);
|
|
|
|
connection.init(message);
|
|
|
|
this.connections.add(connection);
|
|
|
|
return connection;
|
|
|
|
}
|
2014-10-14 17:27:49 +00:00
|
|
|
|
|
|
|
public HttpConnection createNewConnection(Message message, URL url) {
|
|
|
|
HttpConnection connection = new HttpConnection(this);
|
|
|
|
connection.init(message,url);
|
|
|
|
this.connections.add(connection);
|
|
|
|
return connection;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void finishConnection(HttpConnection connection) {
|
|
|
|
this.connections.remove(connection);
|
|
|
|
}
|
2014-10-13 23:06:45 +00:00
|
|
|
}
|