Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Becker2013-09-23 15:28:44 +0000
committerThomas Becker2013-10-11 08:51:05 +0000
commit081e7d3bbd37ee7c4021447fea56e79b1982e0c4 (patch)
tree801d9298f5232891bb422550c33e65f95b646588 /jetty-util
parent33dedd15f96cb480ef8f47a7af770532a11fae98 (diff)
downloadorg.eclipse.jetty.project-081e7d3bbd37ee7c4021447fea56e79b1982e0c4.tar.gz
org.eclipse.jetty.project-081e7d3bbd37ee7c4021447fea56e79b1982e0c4.tar.xz
org.eclipse.jetty.project-081e7d3bbd37ee7c4021447fea56e79b1982e0c4.zip
415609 spdy replace SessionInvoker with IteratingCallback. Introduce Flusher class to separate queuing/flushing logic from StandardSession
Diffstat (limited to 'jetty-util')
-rw-r--r--jetty-util/src/main/java/org/eclipse/jetty/util/IteratingCallback.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jetty-util/src/main/java/org/eclipse/jetty/util/IteratingCallback.java b/jetty-util/src/main/java/org/eclipse/jetty/util/IteratingCallback.java
index a09314d11b..f93128f72e 100644
--- a/jetty-util/src/main/java/org/eclipse/jetty/util/IteratingCallback.java
+++ b/jetty-util/src/main/java/org/eclipse/jetty/util/IteratingCallback.java
@@ -92,7 +92,7 @@ public abstract class IteratingCallback implements Callback
else if (_state.compareAndSet(State.ITERATING,State.WAITING))
// no callback yet, so break the loop and wait for it
break;
-
+
// The callback must have happened and we are either WAITING already or FAILED
// the loop test will work out which
}

Back to the top