Serialized Form


Package com.sun.grizzly.tcp.http11

Class com.sun.grizzly.tcp.http11.ClientAbortException extends IOException implements Serializable

Serialized Fields

message

String message
The error message passed to our constructor (if any)


throwable

Throwable throwable
The underlying exception or error passed to our constructor (if any)


Package com.sun.grizzly.util

Class com.sun.grizzly.util.ConcurrentReferenceHashMap extends AbstractMap<K,V> implements Serializable

serialVersionUID: 7249069246763182397L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
                 throws IOException,
                        ClassNotFoundException
Reconstitute the ConcurrentReferenceHashMap instance from a stream (i.e., deserialize it).

Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream s)
                  throws IOException
Save the state of the ConcurrentReferenceHashMap instance to a stream (i.e., serialize it).

Serial Data:
the key (Object) and value (Object) for each key-value mapping, followed by a null pair. The key-value mappings are emitted in no particular order.
Throws:
IOException
Serialized Fields

segmentMask

int segmentMask
Mask value for indexing into segments. The upper bits of a key's hash code are used to choose the segment.


segmentShift

int segmentShift
Shift value for indexing within segments.


segments

com.sun.grizzly.util.ConcurrentReferenceHashMap.Segment<K,V>[] segments
The segments, each of which is a specialized hash table


identityComparisons

boolean identityComparisons

Class com.sun.grizzly.util.ConcurrentWeakHashMap extends AbstractMap<K,V> implements Serializable

serialVersionUID: 7249069246763182397L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
                 throws IOException,
                        ClassNotFoundException
Reconstitute the ConcurrentWeakHashMap instance from a stream (i.e., deserialize it).

Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream s)
                  throws IOException
Save the state of the ConcurrentWeakHashMap instance to a stream (i.e., serialize it).

Serial Data:
the key (Object) and value (Object) for each key-value mapping, followed by a null pair. The key-value mappings are emitted in no particular order.
Throws:
IOException
Serialized Fields

segmentMask

int segmentMask
Mask value for indexing into segments. The upper bits of a key's hash code are used to choose the segment.


segmentShift

int segmentShift
Shift value for indexing within segments.


segments

com.sun.grizzly.util.ConcurrentWeakHashMap.Segment<K,V>[] segments
The segments, each of which is a specialized hash table

Class com.sun.grizzly.util.LinkedTransferQueue extends AbstractQueue<E> implements Serializable

serialVersionUID: -3223113410248163686L

Serialization Methods

readObject

private void readObject(ObjectInputStream s)
                 throws IOException,
                        ClassNotFoundException
Reconstitute the Queue instance from a stream (that is, deserialize it).

Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream s)
                  throws IOException
Save the state to a stream (that is, serialize it).

Serial Data:
All of the elements (each an E) in the proper order, followed by a null
Throws:
IOException

Class com.sun.grizzly.util.ThreadLocalRandom extends Random implements Serializable

Serialized Fields

rnd

long rnd
The random seed. We can't use super.seed


initialized

boolean initialized
Initialization flag to permit the first and only allowed call to setSeed (inside Random constructor) to succeed. We can't allow others since it would cause setting seed in one part of a program to unintentionally impact other usages by the thread.


pad0

long pad0

pad1

long pad1

pad2

long pad2

pad3

long pad3

pad4

long pad4

pad5

long pad5

pad6

long pad6

pad7

long pad7

Package com.sun.grizzly.util.buf

Class com.sun.grizzly.util.buf.ByteChunk extends Object implements Serializable

Serialized Fields

buff

byte[] buff

start

int start

end

int end

enc

String enc

isSet

boolean isSet

limit

int limit

isOutput

boolean isOutput

optimizedWrite

boolean optimizedWrite

Class com.sun.grizzly.util.buf.CharChunk extends Object implements Serializable

Serialized Fields

buff

char[] buff

start

int start

end

int end

isSet

boolean isSet

isOutput

boolean isOutput

limit

int limit

optimizedWrite

boolean optimizedWrite

Class com.sun.grizzly.util.buf.MessageBytes extends Object implements Serializable

Serialized Fields

type

int type

hashCode

int hashCode

hasHashCode

boolean hasHashCode

caseSensitive

boolean caseSensitive

byteC

ByteChunk byteC

charC

CharChunk charC

strValue

String strValue

hasStrValue

boolean hasStrValue

intValue

int intValue

hasIntValue

boolean hasIntValue

longValue

long longValue

hasLongValue

boolean hasLongValue

Class com.sun.grizzly.util.buf.TimeStamp extends Object implements Serializable

Serialized Fields

creationTime

long creationTime

lastAccessedTime

long lastAccessedTime

thisAccessedTime

long thisAccessedTime

isNew

boolean isNew

maxInactiveInterval

long maxInactiveInterval

isValid

boolean isValid

name

MessageBytes name

id

int id

parent

Object parent

Package com.sun.grizzly.util.http

Class com.sun.grizzly.util.http.FastDateFormat extends DateFormat implements Serializable

Serialized Fields

df

DateFormat df

lastSec

long lastSec

sb

StringBuffer sb

fp

FieldPosition fp

Class com.sun.grizzly.util.http.ParameterMap extends LinkedHashMap implements Serializable

Serialized Fields

locked

boolean locked
The current lock state of this parameter map.

Class com.sun.grizzly.util.http.ServerCookie extends Object implements Serializable

Serialized Fields

name

MessageBytes name

value

MessageBytes value

path

MessageBytes path

domain

MessageBytes domain

secure

boolean secure

comment

MessageBytes comment

maxAge

int maxAge

version

int version

Package com.sun.grizzly.util.net

Class com.sun.grizzly.util.net.URL extends Object implements Serializable

Serialized Fields

authority

String authority
The authority part of the URL.


file

String file
The filename part of the URL.


host

String host
The host name part of the URL.


path

String path
The path part of the URL.


port

int port
The port number part of the URL.


protocol

String protocol
The protocol name part of the URL.


query

String query
The query part of the URL.


ref

String ref
The reference part of the URL.


userInfo

String userInfo
The user info part of the URL.



Copyright © 2009 SUN Microsystems. All Rights Reserved.