What is the exact behavior of AsyncContext after it times out? Does it still run and does it return response using getResponse()?
相关问题
- Load script async?
- C# An asynchronous operation cannot be started at
- aio_write on linux with rtkaio is sometimes long
- await work in chrome console without async wrapper
- Python asyncio: unreferenced tasks are destroyed b
相关文章
- With a Promise, why do browsers return a reject tw
- Asynchronous SHA256 Hashing
- Does aiohttp have ORM?
- Can each Iteration of a for loop/for_each be done
- How does robospice manage activity lifecycle?
- How to call a async function from a synchronized c
- passing multiple arguments to promise resolution w
- Read headers from HttpResponseMessage before Conte
Java Servlet 3.0 Maintenance Release on page 34 reads:
From the javadoc of the javax.servlet.AsyncContext interface:
The last line above is of most importance - there'll be a call to
AsyncContext.complete()
. The javadoc says:With
AsyncContext
closed, calls to most of its methods will throwIllegalStateException
.