Serialized Form


Package com.sun.grizzly.tcp.http11

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

Serialized Fields

message

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


throwable

java.lang.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 java.util.AbstractMap<K,V> implements Serializable

serialVersionUID: 7249069246763182397L

Serialization Methods

readObject

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

Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream s)
                  throws java.io.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:
java.io.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 java.util.AbstractMap<K,V> implements Serializable

serialVersionUID: 7249069246763182397L

Serialization Methods

readObject

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

Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream s)
                  throws java.io.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:
java.io.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 java.util.AbstractQueue<E> implements Serializable

serialVersionUID: -3223113410248163686L

Serialization Methods

readObject

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

Throws:
java.io.IOException
java.lang.ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream s)
                  throws java.io.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:
java.io.IOException

Class com.sun.grizzly.util.ThreadLocalRandom extends java.util.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 java.lang.Object implements Serializable

serialVersionUID: 1L

Serialized Fields

buff

byte[] buff

start

int start

end

int end

charset

java.nio.charset.Charset charset

isSet

boolean isSet

limit

int limit

optimizedWrite

boolean optimizedWrite

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

Serialized Fields

buff

char[] buff

start

int start

end

int end

isSet

boolean isSet

limit

int limit

optimizedWrite

boolean optimizedWrite

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

Serialized Fields

type

int type

hashCode

int hashCode

hasHashCode

boolean hasHashCode

caseSensitive

boolean caseSensitive

byteC

ByteChunk byteC

charC

CharChunk charC

strValue

java.lang.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 java.lang.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

java.lang.Object parent

Package com.sun.grizzly.util.http

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

Serialized Fields

df

java.text.DateFormat df

lastSec

long lastSec

sb

java.lang.StringBuffer sb

fp

java.text.FieldPosition fp

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

Serialized Fields

locked

boolean locked
The current lock state of this parameter map.

Class com.sun.grizzly.util.http.ServerCookie extends java.lang.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 java.lang.Object implements Serializable

Serialized Fields

authority

java.lang.String authority
The authority part of the URL.


file

java.lang.String file
The filename part of the URL.


host

java.lang.String host
The host name part of the URL.


path

java.lang.String path
The path part of the URL.


port

int port
The port number part of the URL.


protocol

java.lang.String protocol
The protocol name part of the URL.


query

java.lang.String query
The query part of the URL.


ref

java.lang.String ref
The reference part of the URL.


userInfo

java.lang.String userInfo
The user info part of the URL.



Copyright © 2012 Oracle Corporation. All Rights Reserved.