Serialized Form
-
Package io.debezium.data
-
Class io.debezium.data.SpecialValueDecimal extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
decimalValue
BigDecimal decimalValue
-
specialValue
SpecialValueDecimal.SpecialValue specialValue
-
-
-
Package io.debezium.document
-
Class io.debezium.document.JacksonWriter.WritingError extends RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
wrapped
IOException wrapped
-
-
-
Package io.debezium.jdbc
-
Class io.debezium.jdbc.JdbcConnectionException extends RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
errorCode
int errorCode
-
sqlState
String sqlState
-
-
-
Package io.debezium.relational.history
-
Class io.debezium.relational.history.DatabaseHistoryException extends RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
-
Package io.debezium.text
-
Class io.debezium.text.MultipleParsingExceptions extends RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
errors
Collection<ParsingException> errors
-
-
Class io.debezium.text.ParsingException extends RuntimeException implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
position
Position position
-
-
-
Package io.debezium.util
-
Class io.debezium.util.BoundedConcurrentHashMap extends AbstractMap<K,V> implements Serializable
- serialVersionUID:
- 7249069246763182397L
-
Serialization Methods
-
readObject
private void readObject(ObjectInputStream s) throws IOException, ClassNotFoundException
Reconstitute the ConcurrentHashMap instance from a stream (i.e., deserialize it).- Throws:
IOExceptionClassNotFoundException
-
writeObject
private void writeObject(ObjectOutputStream s) throws IOException
Save the state of the ConcurrentHashMap 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. -
segments
BoundedConcurrentHashMap.Segment<K,V>[] segments
The segments, each of which is a specialized hash table -
segmentShift
int segmentShift
Shift value for indexing within segments.
-
-