Mercurial Hosting > luan
comparison src/org/eclipse/jetty/server/AsyncContinuation.java @ 937:0541b6034003
remove Continuation
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Sun, 09 Oct 2016 21:41:28 -0600 |
| parents | 237ace6e8bc2 |
| children | a088981f9cd4 |
comparison
equal
deleted
inserted
replaced
| 936:237ace6e8bc2 | 937:0541b6034003 |
|---|---|
| 16 // ======================================================================== | 16 // ======================================================================== |
| 17 // | 17 // |
| 18 | 18 |
| 19 package org.eclipse.jetty.server; | 19 package org.eclipse.jetty.server; |
| 20 | 20 |
| 21 import org.eclipse.jetty.continuation.Continuation; | |
| 22 import org.eclipse.jetty.io.EndPoint; | 21 import org.eclipse.jetty.io.EndPoint; |
| 23 import org.slf4j.Logger; | 22 import org.slf4j.Logger; |
| 24 import org.slf4j.LoggerFactory; | 23 import org.slf4j.LoggerFactory; |
| 25 | 24 |
| 26 | 25 |
| 27 /* ------------------------------------------------------------ */ | 26 public final class AsyncContinuation |
| 28 /** Implementation of Continuation interfaces | |
| 29 * | |
| 30 */ | |
| 31 public final class AsyncContinuation implements Continuation | |
| 32 { | 27 { |
| 33 private static final Logger LOG = LoggerFactory.getLogger(AsyncContinuation.class); | 28 private static final Logger LOG = LoggerFactory.getLogger(AsyncContinuation.class); |
| 34 | 29 |
| 35 private final static long DEFAULT_TIMEOUT=30000L; | 30 private final static long DEFAULT_TIMEOUT=30000L; |
| 36 | 31 |
