-
-
class AlarmCheckEvent extends org.springframework.context.ApplicationEvent implements
Serializable
-
class CollectEvent extends org.springframework.context.ApplicationEvent implements
Serializable
-
class RefreshEvent extends org.springframework.context.ApplicationEvent implements
Serializable
-
-
-
-
- serialVersionUID:
- 8032578371739960142L
-
序列化字段
-
maxFreeMemory
int maxFreeMemory
-
- serialVersionUID:
- -6903933977591709194L
-
序列化方法
-
readObject
Reconstitutes this queue from a stream (that is, deserializes it).
- 参数:
s - the stream
- 抛出:
ClassNotFoundException - if the class of a serialized object
could not be found
IOException - if an I/O error occurs
-
writeObject
Saves this queue to a stream (that is, serializes it).
- 序列数据:
- The capacity is emitted (int), followed by all of
its elements (each an
Object) in the proper order,
followed by a null
- 参数:
s - the stream
- 抛出:
IOException - if an I/O error occurs
-
序列化字段
-
capacity
int capacity
The capacity bound, or Integer.MAX_VALUE if none
-
count
AtomicInteger count
Current number of elements
-
notEmpty
Condition notEmpty
Wait queue for waiting takes
-
notFull
Condition notFull
Wait queue for waiting puts
-
putLock
ReentrantLock putLock
Lock held by put, offer, etc
-
takeLock
ReentrantLock takeLock
Lock held by take, poll, etc