Serialized Form
Package com.sun.grizzly.tcp.http11 |
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 |
serialVersionUID: 7249069246763182397L
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
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
serialVersionUID: 7249069246763182397L
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
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
serialVersionUID: -3223113410248163686L
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
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 |
buff
byte[] buff
start
int start
end
int end
enc
String enc
isSet
boolean isSet
limit
int limit
isOutput
boolean isOutput
optimizedWrite
boolean optimizedWrite
buff
char[] buff
start
int start
end
int end
isSet
boolean isSet
isOutput
boolean isOutput
limit
int limit
optimizedWrite
boolean optimizedWrite
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
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 |
df
DateFormat df
lastSec
long lastSec
sb
StringBuffer sb
fp
FieldPosition fp
locked
boolean locked
- The current lock state of this parameter map.
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 |
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.