|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of Request in com.sun.grizzly.http |
---|
Fields in com.sun.grizzly.http declared as Request | |
---|---|
protected Request |
ProcessorTask.request
Request object. |
Methods in com.sun.grizzly.http that return Request | |
---|---|
protected Request |
ProcessorTask.createRequest()
Creates Request object. |
Request |
ProcessorTask.getRequest()
Return the internal Request object. |
Methods in com.sun.grizzly.http with parameters of type Request | |
---|---|
abstract boolean |
TemporaryInterceptor.checkForUpgrade(Request request)
|
protected boolean |
FileCache.checkIfHeaders(Request request,
FileCache.FileCacheEntry entry)
Check if the conditions specified in the optional If headers are satisfied. |
protected boolean |
FileCache.checkIfMatch(Request request,
FileCache.FileCacheEntry entry)
Check if the if-match condition is satisfied. |
protected boolean |
FileCache.checkIfUnmodifiedSince(Request request,
FileCache.FileCacheEntry entry)
Check if the if-unmodified-since condition is satisfied. |
abstract boolean |
TemporaryInterceptor.doUpgrade(SelectionKey key,
Request request,
SSLSupport sslSupport)
|
protected FileCache.FileCacheEntry |
FileCache.map(Request request)
Return true if the file is cached. |
boolean |
FileCache.sendCache(Request req)
Send the cache. |
protected void |
FileCache.sendCache(Request request,
FileCache.FileCacheEntry entry)
Send the cached resource. |
Uses of Request in com.sun.grizzly.http.jk.common |
---|
Methods in com.sun.grizzly.http.jk.common with parameters of type Request | |
---|---|
int |
JkInputStream.doRead(ByteChunk responseChunk,
Request req)
|
void |
ChannelJni.registerRequest(Request req,
MsgContext ep,
int count)
|
void |
ChannelSocket.registerRequest(Request req,
MsgContext ep,
int count)
|
void |
ChannelUn.registerRequest(Request req,
MsgContext ep,
int count)
|
void |
ChannelNioSocket.registerRequest(Request req,
MsgContext ep,
int count)
|
Uses of Request in com.sun.grizzly.http.jk.core |
---|
Methods in com.sun.grizzly.http.jk.core that return Request | |
---|---|
Request |
MsgContext.getRequest()
|
Methods in com.sun.grizzly.http.jk.core with parameters of type Request | |
---|---|
void |
JkChannel.registerRequest(Request req,
MsgContext ep,
int count)
Register a new Request in the Request pool. |
void |
MsgContext.setRequest(Request req)
The high level request object associated with this context |
Uses of Request in com.sun.grizzly.samples.stickies |
---|
Methods in com.sun.grizzly.samples.stickies with parameters of type Request | |
---|---|
boolean |
StickiesApplication.isApplicationRequest(Request request)
|
Uses of Request in com.sun.grizzly.samples.websockets |
---|
Methods in com.sun.grizzly.samples.websockets with parameters of type Request | |
---|---|
boolean |
ChatApplication.isApplicationRequest(Request request)
|
Uses of Request in com.sun.grizzly.ssl |
---|
Methods in com.sun.grizzly.ssl with parameters of type Request | |
---|---|
protected void |
SSLFileCache.sendCache(Request request,
FileCache.FileCacheEntry entry)
|
Uses of Request in com.sun.grizzly.standalone |
---|
Methods in com.sun.grizzly.standalone with parameters of type Request | |
---|---|
int |
StaticHandler.handle(Request req,
int handlerCode)
Intercept the request and decide if we cache the static resource. |
protected boolean |
StaticHandler.keepAlive(Request request)
Get the keep-alive header. |
Uses of Request in com.sun.grizzly.tcp |
---|
Fields in com.sun.grizzly.tcp declared as Request | |
---|---|
Request |
DynamicContentAdapter.RequestTupple.req
|
protected Request |
Response.req
|
Methods in com.sun.grizzly.tcp that return Request | |
---|---|
Request |
Response.getRequest()
|
Methods in com.sun.grizzly.tcp with parameters of type Request | |
---|---|
void |
DynamicContentAdapter.afterService(Request req,
Response res)
Deprecated. |
void |
StaticResourcesAdapter.afterService(Request req,
Response res)
Finish the Response and recycle the Request and the
Response . |
void |
Adapter.afterService(Request req,
Response res)
Finish the response and dedide if the Request /Response
object must be recycled. |
protected void |
StaticResourcesAdapter.customizedErrorPage(Request req,
Response res)
Customize the error pahe |
int |
InputBuffer.doRead(ByteChunk chunk,
Request request)
Return from the input stream. |
void |
DynamicContentAdapter.service(Request req,
Response res)
Deprecated. |
void |
StaticResourcesAdapter.service(Request req,
Response res)
Based on the Request URI, try to map the file from the rootFolder, and send it synchronously using send file. |
void |
Adapter.service(Request req,
Response res)
Invoke the service method. |
protected void |
StaticResourcesAdapter.service(String uri,
Request req,
Response res)
Lookup a resource based on the request URI, and send it using send file. |
protected abstract void |
DynamicContentAdapter.serviceDynamicContent(Request req,
Response res)
Deprecated. |
void |
Response.setRequest(Request req)
|
Constructors in com.sun.grizzly.tcp with parameters of type Request | |
---|---|
RequestInfo(Request req)
Constructor |
Uses of Request in com.sun.grizzly.tcp.http11 |
---|
Fields in com.sun.grizzly.tcp.http11 declared as Request | |
---|---|
protected Request |
GrizzlyRequest.request
Grizzly request. |
protected Request |
InternalInputBuffer.request
Associated Coyote request. |
Methods in com.sun.grizzly.tcp.http11 that return Request | |
---|---|
Request |
GrizzlyRequest.getRequest()
Get the Coyote request. |
Request |
GrizzlyInputBuffer.getRequest()
Get associated Coyote request. |
Methods in com.sun.grizzly.tcp.http11 with parameters of type Request | |
---|---|
void |
GrizzlyAdapter.afterService(Request req,
Response res)
Clean up the Request and Response object, and commit the
response, and then invoke the GrizzlyAdapter.afterService(com.sun.grizzly.tcp.http11.GrizzlyRequest, com.sun.grizzly.tcp.http11.GrizzlyResponse) method to allow extension
of this class to clean their own objects. |
int |
InputFilter.doRead(ByteChunk chunk,
Request unused)
Read bytes. |
int |
InternalInputBuffer.doRead(ByteChunk chunk,
Request req)
Read some bytes. |
int |
InternalInputBuffer.InputStreamInputBuffer.doRead(ByteChunk chunk,
Request req)
Read bytes into the specified chunk. |
void |
GrizzlyAdapter.service(Request req,
Response res)
Wrap a Request and Response with associated high level
classes like GrizzlyRequest and GrizzlyResponse . |
void |
GrizzlyRequest.setRequest(Request request)
Set the Coyote request. |
void |
GrizzlyInputBuffer.setRequest(Request coyoteRequest)
Associated Coyote request. |
void |
InputFilter.setRequest(Request request)
Some filters need additional parameters from the request. |
Constructors in com.sun.grizzly.tcp.http11 with parameters of type Request | |
---|---|
InternalInputBuffer(Request request)
Default constructor. |
|
InternalInputBuffer(Request request,
int headerBufferSize)
Alternate constructor. |
Uses of Request in com.sun.grizzly.tcp.http11.filters |
---|
Methods in com.sun.grizzly.tcp.http11.filters with parameters of type Request | |
---|---|
int |
VoidInputFilter.doRead(ByteChunk chunk,
Request req)
Write some bytes. |
int |
BufferedInputFilter.doRead(ByteChunk chunk,
Request request)
Fills the given ByteChunk with the buffered request body. |
int |
ChunkedInputFilter.doRead(ByteChunk chunk,
Request req)
Read bytes. |
int |
IdentityInputFilter.doRead(ByteChunk chunk,
Request req)
Read bytes. |
void |
VoidInputFilter.setRequest(Request request)
Set the associated reauest. |
void |
BufferedInputFilter.setRequest(Request request)
Reads the request body and buffers it. |
void |
ChunkedInputFilter.setRequest(Request request)
Read the content length from the request. |
void |
IdentityInputFilter.setRequest(Request request)
Read the content length from the request. |
Uses of Request in com.sun.grizzly.websockets |
---|
Methods in com.sun.grizzly.websockets with parameters of type Request | |
---|---|
WebSocketApplication |
WebSocketEngine.getApplication(Request request)
|
abstract boolean |
WebSocketApplication.isApplicationRequest(Request request)
Checks application specific criteria to determine if this application can process the Request as a WebSocket connection. |
boolean |
WebSocketApplication.upgrade(Request request)
Checks protocol specific information and queries #isApplicationRequest(Request) to see if the Request should be upgraded. |
Constructors in com.sun.grizzly.websockets with parameters of type Request | |
---|---|
ServerHandShake(Request request,
boolean secure,
ByteChunk chunk)
|
|
ServerNetworkHandler(ProcessorTask task,
AsyncProcessorTask async,
Request req,
Response resp)
|
|
ServerNetworkHandler(Request req,
Response resp)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |