Modifier and Type | Interface and Description |
---|---|
interface |
Connection<L>
Common interface, which represents any kind of connection.
|
Modifier and Type | Class and Description |
---|---|
class |
Context
Object, which is responsible for holding context during I/O event processing.
|
Modifier and Type | Method and Description |
---|---|
TransformationResult<K,L> |
Transformer.getLastResult(AttributeStorage storage)
Gets the last returned Transformer result.
|
TransformationResult<K,L> |
AbstractTransformer.getLastResult(AttributeStorage storage) |
static <T> T |
AbstractTransformer.getValue(AttributeStorage storage,
Attribute<T> attribute,
T defaultValue) |
boolean |
Transformer.hasInputRemaining(AttributeStorage storage,
K input) |
protected MemoryManager |
AbstractTransformer.obtainMemoryManager(AttributeStorage storage) |
protected AbstractTransformer.LastResultAwareState<K,L> |
AbstractTransformer.obtainStateObject(AttributeStorage storage) |
void |
Transformer.release(AttributeStorage storage)
The Transformer has done its work and can release all
associated resource.
|
void |
AbstractTransformer.release(AttributeStorage storage) |
protected TransformationResult<K,L> |
AbstractTransformer.saveLastResult(AttributeStorage storage,
TransformationResult<K,L> result) |
TransformationResult<K,L> |
Transformer.transform(AttributeStorage storage,
K input)
Transforms an input data to some custom representation.
|
TransformationResult<K,L> |
AbstractTransformer.transform(AttributeStorage storage,
K input) |
protected abstract TransformationResult<K,L> |
AbstractTransformer.transformImpl(AttributeStorage storage,
K input) |
Modifier and Type | Method and Description |
---|---|
T |
Attribute.get(AttributeStorage storage)
Get attribute value, stored on the
AttributeStorage . |
boolean |
Attribute.isSet(AttributeStorage storage)
Checks if this attribute is set on the
AttributeStorage . |
T |
Attribute.peek(AttributeStorage storage)
Get attribute value, stored on the
AttributeStorage ,
the difference from Attribute.get(AttributeStorage) is
that default value or NullaryFunction won't be invoked. |
T |
Attribute.remove(AttributeStorage storage)
Remove attribute value, stored on the
AttributeStorage . |
void |
Attribute.set(AttributeStorage storage,
T value)
Set attribute value, stored on the
AttributeStorage . |
Modifier and Type | Method and Description |
---|---|
void |
LZMAEncoder.finish(AttributeStorage storage) |
void |
LZMADecoder.finish(AttributeStorage storage) |
boolean |
LZMAEncoder.hasInputRemaining(AttributeStorage storage,
Buffer input) |
boolean |
LZMADecoder.hasInputRemaining(AttributeStorage storage,
Buffer input) |
protected TransformationResult<Buffer,Buffer> |
LZMAEncoder.transformImpl(AttributeStorage storage,
Buffer input) |
protected TransformationResult<Buffer,Buffer> |
LZMADecoder.transformImpl(AttributeStorage storage,
Buffer input) |
Modifier and Type | Method and Description |
---|---|
Buffer |
GZipEncoder.finish(AttributeStorage storage)
Finishes to compress data to the output stream without closing
the underlying stream.
|
boolean |
GZipEncoder.hasInputRemaining(AttributeStorage storage,
Buffer input) |
boolean |
GZipDecoder.hasInputRemaining(AttributeStorage storage,
Buffer input) |
protected TransformationResult<Buffer,Buffer> |
GZipEncoder.transformImpl(AttributeStorage storage,
Buffer input) |
protected TransformationResult<Buffer,Buffer> |
GZipDecoder.transformImpl(AttributeStorage storage,
Buffer input) |
Modifier and Type | Class and Description |
---|---|
class |
FilterChainContext
FilterChain Context implementation. |
Modifier and Type | Class and Description |
---|---|
class |
HttpContext
Represents a single logical HTTP transaction.
|
class |
HttpHeader
HttpPacket , which represents HTTP message header. |
class |
HttpRequestPacket
The
HttpHeader object, which represents HTTP request message. |
class |
HttpResponsePacket
The
HttpHeader object, which represents HTTP response message. |
Modifier and Type | Method and Description |
---|---|
AttributeStorage |
HttpContext.getContextStorage() |
Modifier and Type | Method and Description |
---|---|
static HttpContext |
HttpContext.newInstance(FilterChainContext ctx,
AttributeStorage attributeStorage,
OutputSink outputSink,
Closeable closeable) |
Constructor and Description |
---|
HttpContext(AttributeStorage attributeStorage,
OutputSink outputSink,
Closeable closeable) |
Modifier and Type | Class and Description |
---|---|
class |
AjpHttpRequest
HttpRequestPacket implementation, which also contains AJP
related meta data. |
class |
AjpHttpResponse
HttpResponsePacket implementation, which also contains AJP
related meta data. |
Modifier and Type | Class and Description |
---|---|
class |
NIOConnection
Common
Connection implementation for Java NIO Connections. |
Modifier and Type | Class and Description |
---|---|
class |
TCPNIOConnection
Connection implementation
for the TCPNIOTransport |
class |
TCPNIOServerConnection |
class |
UDPNIOConnection
Connection implementation
for the UDPNIOTransport |
class |
UDPNIOServerConnection
Server
Connection implementation
for the UDPNIOTransport |
Modifier and Type | Method and Description |
---|---|
boolean |
SSLDecoderTransformer.hasInputRemaining(AttributeStorage storage,
Buffer input) |
boolean |
SSLEncoderTransformer.hasInputRemaining(AttributeStorage storage,
Buffer input) |
protected TransformationResult<Buffer,Buffer> |
SSLDecoderTransformer.transformImpl(AttributeStorage state,
Buffer originalMessage) |
protected TransformationResult<Buffer,Buffer> |
SSLEncoderTransformer.transformImpl(AttributeStorage state,
Buffer originalMessage) |
Modifier and Type | Field and Description |
---|---|
protected AttributeStorage |
TransformerOutput.attributeStorage |
protected AttributeStorage |
TransformerInput.attributeStorage |
Constructor and Description |
---|
TransformerInput(Transformer<Buffer,Buffer> transformer,
Input underlyingInput,
MemoryManager memoryManager,
AttributeStorage attributeStorage) |
TransformerOutput(Transformer<Buffer,Buffer> transformer,
Output underlyingOutput,
MemoryManager memoryManager,
AttributeStorage attributeStorage) |
Modifier and Type | Interface and Description |
---|---|
interface |
WorkerThread
Interface, which Grizzly thread pool threads should implement.
|
Modifier and Type | Class and Description |
---|---|
class |
DefaultWorkerThread
Default Grizzly worker thread implementation
|
Copyright © 2014 Oracle Corporation. All rights reserved.