Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2015-02-11 03:20:06 +0000
committerGreg Wilkins2015-02-11 03:20:06 +0000
commit2162455b72d5a474bba47d5daf5543d46c2688be (patch)
treefc8e6ffd366dcd6398b52897038faba2713e7c60 /jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/Controller.java
parentb399649a1a4189175535eabea0742739d5efa01a (diff)
downloadorg.eclipse.jetty.project-2162455b72d5a474bba47d5daf5543d46c2688be.tar.gz
org.eclipse.jetty.project-2162455b72d5a474bba47d5daf5543d46c2688be.tar.xz
org.eclipse.jetty.project-2162455b72d5a474bba47d5daf5543d46c2688be.zip
Removed SPDY and NPN
Because jetty 9.3 is targetted for HTTP2, we have removed support for SPDY and NPN.
Diffstat (limited to 'jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/Controller.java')
-rw-r--r--jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/Controller.java30
1 files changed, 0 insertions, 30 deletions
diff --git a/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/Controller.java b/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/Controller.java
deleted file mode 100644
index 32a5b8d1c6..0000000000
--- a/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/Controller.java
+++ /dev/null
@@ -1,30 +0,0 @@
-//
-// ========================================================================
-// Copyright (c) 1995-2015 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;
-
-import java.nio.ByteBuffer;
-
-import org.eclipse.jetty.util.Callback;
-
-public interface Controller
-{
- public void write(Callback callback, ByteBuffer... buffers);
-
- public void close(boolean onlyOutput);
-}

Back to the top