Uses of Interface
org.glassfish.grizzly.attributes.AttributeStorage

Packages that use AttributeStorage
org.glassfish.grizzly   
org.glassfish.grizzly.attributes   
org.glassfish.grizzly.compression.lzma   
org.glassfish.grizzly.compression.zip   
org.glassfish.grizzly.filterchain   
org.glassfish.grizzly.nio   
org.glassfish.grizzly.nio.transport   
org.glassfish.grizzly.ssl   
org.glassfish.grizzly.streams   
org.glassfish.grizzly.threadpool   
org.glassfish.grizzly.utils   
 

Uses of AttributeStorage in org.glassfish.grizzly
 

Subinterfaces of AttributeStorage in org.glassfish.grizzly
 interface Connection<L>
          Common interface, which represents any kind of connection.
 

Classes in org.glassfish.grizzly that implement AttributeStorage
 class Context
          Object, which is responsible for holding context during I/O event processing.
 

Methods in org.glassfish.grizzly with parameters of type AttributeStorage
 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)
           
 

Uses of AttributeStorage in org.glassfish.grizzly.attributes
 

Methods in org.glassfish.grizzly.attributes with parameters of type AttributeStorage
 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.
 

Uses of AttributeStorage in org.glassfish.grizzly.compression.lzma
 

Methods in org.glassfish.grizzly.compression.lzma with parameters of type AttributeStorage
 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)
           
 

Uses of AttributeStorage in org.glassfish.grizzly.compression.zip
 

Methods in org.glassfish.grizzly.compression.zip with parameters of type AttributeStorage
 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)
           
 

Uses of AttributeStorage in org.glassfish.grizzly.filterchain
 

Classes in org.glassfish.grizzly.filterchain that implement AttributeStorage
 class FilterChainContext
          FilterChain Context implementation.
 

Uses of AttributeStorage in org.glassfish.grizzly.nio
 

Classes in org.glassfish.grizzly.nio that implement AttributeStorage
 class NIOConnection
          Common Connection implementation for Java NIO Connections.
 

Uses of AttributeStorage in org.glassfish.grizzly.nio.transport
 

Classes in org.glassfish.grizzly.nio.transport that implement AttributeStorage
 class TCPNIOConnection
          Connection implementation for the TCPNIOTransport
 class TCPNIOServerConnection
           
 class UDPNIOConnection
          Connection implementation for the UDPNIOTransport
 class UDPNIOServerConnection
          Server Connection implementation for the UDPNIOTransport
 

Uses of AttributeStorage in org.glassfish.grizzly.ssl
 

Methods in org.glassfish.grizzly.ssl with parameters of type AttributeStorage
static javax.net.ssl.SSLEngine SSLUtils.getSSLEngine(AttributeStorage storage)
           
 boolean SSLEncoderTransformer.hasInputRemaining(AttributeStorage storage, Buffer input)
           
 boolean SSLDecoderTransformer.hasInputRemaining(AttributeStorage storage, Buffer input)
           
static void SSLUtils.setSSLEngine(AttributeStorage storage, javax.net.ssl.SSLEngine sslEngine)
           
protected  TransformationResult<Buffer,Buffer> SSLEncoderTransformer.transformImpl(AttributeStorage state, Buffer originalMessage)
           
protected  TransformationResult<Buffer,Buffer> SSLDecoderTransformer.transformImpl(AttributeStorage state, Buffer originalMessage)
           
 

Uses of AttributeStorage in org.glassfish.grizzly.streams
 

Fields in org.glassfish.grizzly.streams declared as AttributeStorage
protected  AttributeStorage TransformerOutput.attributeStorage
           
protected  AttributeStorage TransformerInput.attributeStorage
           
 

Constructors in org.glassfish.grizzly.streams with parameters of type AttributeStorage
TransformerInput(Transformer<Buffer,Buffer> transformer, Input underlyingInput, MemoryManager memoryManager, AttributeStorage attributeStorage)
           
TransformerOutput(Transformer<Buffer,Buffer> transformer, Output underlyingOutput, MemoryManager memoryManager, AttributeStorage attributeStorage)
           
 

Uses of AttributeStorage in org.glassfish.grizzly.threadpool
 

Subinterfaces of AttributeStorage in org.glassfish.grizzly.threadpool
 interface WorkerThread
          Interface, which Grizzly thread pool threads should implement.
 

Classes in org.glassfish.grizzly.threadpool that implement AttributeStorage
 class DefaultWorkerThread
          Default Grizzly worker thread implementation
 

Uses of AttributeStorage in org.glassfish.grizzly.utils
 

Methods in org.glassfish.grizzly.utils with parameters of type AttributeStorage
 boolean StringDecoder.hasInputRemaining(AttributeStorage storage, Buffer input)
           
 boolean ChunkingFilter.ChunkingTransformer.hasInputRemaining(AttributeStorage storage, Buffer input)
           
 boolean StringEncoder.hasInputRemaining(AttributeStorage storage, java.lang.String input)
           
protected  TransformationResult<Buffer,java.lang.String> StringDecoder.parseWithLengthPrefix(AttributeStorage storage, Buffer input)
           
protected  TransformationResult<Buffer,java.lang.String> StringDecoder.parseWithTerminatingSeq(AttributeStorage storage, Buffer input)
           
 void StringDecoder.release(AttributeStorage storage)
           
protected  TransformationResult<Buffer,java.lang.String> StringDecoder.transformImpl(AttributeStorage storage, Buffer input)
           
protected  TransformationResult<Buffer,Buffer> ChunkingFilter.ChunkingTransformer.transformImpl(AttributeStorage storage, Buffer input)
           
protected  TransformationResult<java.lang.String,Buffer> StringEncoder.transformImpl(AttributeStorage storage, java.lang.String input)
           
 



Copyright © 2011 Oracle Corpration. All Rights Reserved.