Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jetty-spdy/spdy-http-client-transport/src/main/java/org/eclipse/jetty/spdy/client/http/HttpConnectionOverSPDY.java')
-rw-r--r--jetty-spdy/spdy-http-client-transport/src/main/java/org/eclipse/jetty/spdy/client/http/HttpConnectionOverSPDY.java82
1 files changed, 0 insertions, 82 deletions
diff --git a/jetty-spdy/spdy-http-client-transport/src/main/java/org/eclipse/jetty/spdy/client/http/HttpConnectionOverSPDY.java b/jetty-spdy/spdy-http-client-transport/src/main/java/org/eclipse/jetty/spdy/client/http/HttpConnectionOverSPDY.java
deleted file mode 100644
index f3055e9f13..0000000000
--- a/jetty-spdy/spdy-http-client-transport/src/main/java/org/eclipse/jetty/spdy/client/http/HttpConnectionOverSPDY.java
+++ /dev/null
@@ -1,82 +0,0 @@
-//
-// ========================================================================
-// Copyright (c) 1995-2016 Mort Bay Consulting Pty. Ltd.
-// ------------------------------------------------------------------------
-// All rights reserved. This program and the accompanying materials
-// are made available under the terms of the Eclipse Public License v1.0
-// and Apache License v2.0 which accompanies this distribution.
-//
-// The Eclipse Public License is available at
-// http://www.eclipse.org/legal/epl-v10.html
-//
-// The Apache License v2.0 is available at
-// http://www.opensource.org/licenses/apache2.0.php
-//
-// You may elect to redistribute this code under either of these licenses.
-// ========================================================================
-//
-
-package org.eclipse.jetty.spdy.client.http;
-
-import java.nio.channels.AsynchronousCloseException;
-import java.util.Set;
-
-import org.eclipse.jetty.client.HttpChannel;
-import org.eclipse.jetty.client.HttpConnection;
-import org.eclipse.jetty.client.HttpDestination;
-import org.eclipse.jetty.client.HttpExchange;
-import org.eclipse.jetty.spdy.api.GoAwayInfo;
-import org.eclipse.jetty.spdy.api.Session;
-import org.eclipse.jetty.util.Callback;
-import org.eclipse.jetty.util.ConcurrentHashSet;
-
-public class HttpConnectionOverSPDY extends HttpConnection
-{
- private final Set<HttpChannel> channels = new ConcurrentHashSet<>();
- private final Session session;
-
- public HttpConnectionOverSPDY(HttpDestination destination, Session session)
- {
- super(destination);
- this.session = session;
- }
-
- @Override
- protected void send(HttpExchange exchange)
- {
- normalizeRequest(exchange.getRequest());
- // One connection maps to N channels, so for each exchange we create a new channel
- HttpChannel channel = new HttpChannelOverSPDY(getHttpDestination(), this, session);
- channels.add(channel);
- if (channel.associate(exchange))
- channel.send();
- else
- channel.release();
- }
-
- protected void release(HttpChannel channel)
- {
- channels.remove(channel);
- }
-
- @Override
- public void close()
- {
- // First close then abort, to be sure that the connection cannot be reused
- // from an onFailure() handler or by blocking code waiting for completion.
- getHttpDestination().close(this);
- session.goAway(new GoAwayInfo(), Callback.Adapter.INSTANCE);
- abort(new AsynchronousCloseException());
- }
-
- private void abort(Throwable failure)
- {
- for (HttpChannel channel : channels)
- {
- HttpExchange exchange = channel.getHttpExchange();
- if (exchange != null)
- exchange.getRequest().abort(failure);
- }
- channels.clear();
- }
-}

Back to the top