Uses of Interface
org.glassfish.grizzly.attributes.AttributeStorage
-
-
Uses of AttributeStorage in org.glassfish.grizzly
Subinterfaces of AttributeStorage in org.glassfish.grizzly Modifier and Type Interface Description interfaceConnection<L>Common interface, which represents any kind of connection.Classes in org.glassfish.grizzly that implement AttributeStorage Modifier and Type Class Description classContextObject, which is responsible for holding context during I/O event processing.Methods in org.glassfish.grizzly with parameters of type AttributeStorage Modifier and Type Method Description TransformationResult<K,L>AbstractTransformer. getLastResult(AttributeStorage storage)TransformationResult<K,L>Transformer. getLastResult(AttributeStorage storage)Gets the last returned Transformer result.static <T> TAbstractTransformer. getValue(AttributeStorage storage, Attribute<T> attribute, T defaultValue)booleanTransformer. hasInputRemaining(AttributeStorage storage, K input)protected MemoryManagerAbstractTransformer. obtainMemoryManager(AttributeStorage storage)protected AbstractTransformer.LastResultAwareState<K,L>AbstractTransformer. obtainStateObject(AttributeStorage storage)voidAbstractTransformer. release(AttributeStorage storage)voidTransformer. release(AttributeStorage storage)The Transformer has done its work and can release all associated resource.protected TransformationResult<K,L>AbstractTransformer. saveLastResult(AttributeStorage storage, TransformationResult<K,L> result)TransformationResult<K,L>AbstractTransformer. transform(AttributeStorage storage, K input)TransformationResult<K,L>Transformer. transform(AttributeStorage storage, K input)Transforms an input data to some custom representation.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 Modifier and Type Method Description TAttribute. get(AttributeStorage storage)Get attribute value, stored on theAttributeStorage.booleanAttribute. isSet(AttributeStorage storage)Checks if this attribute is set on theAttributeStorage.TAttribute. peek(AttributeStorage storage)Get attribute value, stored on theAttributeStorage, the difference fromAttribute.get(AttributeStorage)is that default value orNullaryFunctionwon't be invoked.TAttribute. remove(AttributeStorage storage)Remove attribute value, stored on theAttributeStorage.voidAttribute. set(AttributeStorage storage, T value)Set attribute value, stored on theAttributeStorage. -
Uses of AttributeStorage in org.glassfish.grizzly.compression.lzma
Methods in org.glassfish.grizzly.compression.lzma with parameters of type AttributeStorage Modifier and Type Method Description voidLZMADecoder. finish(AttributeStorage storage)voidLZMAEncoder. finish(AttributeStorage storage)booleanLZMADecoder. hasInputRemaining(AttributeStorage storage, Buffer input)booleanLZMAEncoder. hasInputRemaining(AttributeStorage storage, Buffer input)protected TransformationResult<Buffer,Buffer>LZMADecoder. transformImpl(AttributeStorage storage, Buffer input)protected TransformationResult<Buffer,Buffer>LZMAEncoder. 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 Modifier and Type Method Description BufferGZipEncoder. finish(AttributeStorage storage)Finishes to compress data to the output stream without closing the underlying stream.booleanGZipDecoder. hasInputRemaining(AttributeStorage storage, Buffer input)booleanGZipEncoder. hasInputRemaining(AttributeStorage storage, Buffer input)protected TransformationResult<Buffer,Buffer>GZipDecoder. transformImpl(AttributeStorage storage, Buffer input)protected TransformationResult<Buffer,Buffer>GZipEncoder. transformImpl(AttributeStorage storage, Buffer input) -
Uses of AttributeStorage in org.glassfish.grizzly.filterchain
Classes in org.glassfish.grizzly.filterchain that implement AttributeStorage Modifier and Type Class Description classFilterChainContextFilterChainContextimplementation. -
Uses of AttributeStorage in org.glassfish.grizzly.nio
Classes in org.glassfish.grizzly.nio that implement AttributeStorage Modifier and Type Class Description classNIOConnectionCommonConnectionimplementation for Java NIO Connections. -
Uses of AttributeStorage in org.glassfish.grizzly.nio.transport
Classes in org.glassfish.grizzly.nio.transport that implement AttributeStorage Modifier and Type Class Description classTCPNIOConnectionConnectionimplementation for theTCPNIOTransportclassTCPNIOServerConnectionclassUDPNIOConnectionConnectionimplementation for theUDPNIOTransportclassUDPNIOServerConnectionServerConnectionimplementation for theUDPNIOTransport -
Uses of AttributeStorage in org.glassfish.grizzly.ssl
Methods in org.glassfish.grizzly.ssl with parameters of type AttributeStorage Modifier and Type Method Description booleanSSLDecoderTransformer. hasInputRemaining(AttributeStorage storage, Buffer input)booleanSSLEncoderTransformer. 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) -
Uses of AttributeStorage in org.glassfish.grizzly.streams
Fields in org.glassfish.grizzly.streams declared as AttributeStorage Modifier and Type Field Description protected AttributeStorageTransformerInput. attributeStorageprotected AttributeStorageTransformerOutput. attributeStorageConstructors in org.glassfish.grizzly.streams with parameters of type AttributeStorage Constructor Description 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 Modifier and Type Interface Description interfaceWorkerThreadInterface, which Grizzly thread pool threads should implement.Classes in org.glassfish.grizzly.threadpool that implement AttributeStorage Modifier and Type Class Description classDefaultWorkerThreadDefault Grizzly worker thread implementation -
Uses of AttributeStorage in org.glassfish.grizzly.utils
-