Serialized Form
|
Package com.netflix.servo.jsr166e |
serialVersionUID: 7249069246763182397L
readObject
private void readObject(java.io.ObjectInputStream s)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Reconstitutes the instance from a stream (that is, deserializes it).
- Throws:
java.lang.ClassNotFoundException - if the class of a serialized object
could not be found
java.io.IOException - if an I/O error occurs
writeObject
private void writeObject(java.io.ObjectOutputStream s)
throws java.io.IOException
- Saves the state of the
ConcurrentHashMapV8 instance to a
stream (i.e., serializes 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 - if an I/O error occurs
- For serialization compatibility.
serialVersionUID: 7249069246763182397L
value
java.lang.Object value
serialVersionUID: 5232453752276485070L
completer
CountedCompleter<T> completer
- This task's completer, or null if none
pending
int pending
- The number of pending tasks until completion
serialVersionUID: -7721805057305804111L
readObject
private void readObject(java.io.ObjectInputStream s)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Reconstitutes this task from a stream (that is, deserializes it).
- Throws:
java.lang.ClassNotFoundException - if the class of a serialized object
could not be found
java.io.IOException - if an I/O error occurs
writeObject
private void writeObject(java.io.ObjectOutputStream s)
throws java.io.IOException
- Saves this task to a stream (that is, serializes it).
- Serial Data:
- the current run status and the exception thrown
during execution, or
null if none
- Throws:
java.io.IOException - if an I/O error occurs
status
int status
- The run status of this task
serialVersionUID: -5851777807851030925L
rnd
long rnd
- The random seed. We can't use super.seed.
initialized
boolean initialized
- Initialization flag to permit calls to setSeed to succeed only
while executing the Random constructor. 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.netflix.servo.tag |