Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Handler.java')
-rw-r--r--jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Handler.java56
1 files changed, 56 insertions, 0 deletions
diff --git a/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Handler.java b/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Handler.java
new file mode 100644
index 0000000000..b69467e368
--- /dev/null
+++ b/jetty-spdy/spdy-core/src/main/java/org/eclipse/jetty/spdy/api/Handler.java
@@ -0,0 +1,56 @@
+//========================================================================
+//Copyright 2011-2012 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.api;
+
+/**
+ * <p>A callback abstraction that handles completed/failed events of asynchronous operations.</p>
+ * <p>Instances of this class capture a context that is made available on the completion callback.</p>
+ *
+ * @param <C> the type of the context object
+ */
+public interface Handler<C>
+{
+ /**
+ * <p>Callback invoked when the operation completes.</p>
+ *
+ * @param context the context
+ * @see #failed(Object, Throwable)
+ */
+ public abstract void completed(C context);
+
+ /**
+ * <p>Callback invoked when the operation fails.</p>
+ * @param context the context
+ * @param x the reason for the operation failure
+ */
+ public void failed(C context, Throwable x);
+
+ /**
+ * <p>Empty implementation of {@link Handler}</p>
+ *
+ * @param <C> the type of the context object
+ */
+ public static class Adapter<C> implements Handler<C>
+ {
+ @Override
+ public void completed(C context)
+ {
+ }
+
+ @Override
+ public void failed(C context, Throwable x)
+ {
+ }
+ }
+}

Back to the top