java.lang.Object
io.debezium.connector.oracle.logminer.processor.ehcache.serialization.DeserializationContext

public class DeserializationContext extends Object
A simple context object for tracking the deserialization of a DataInputStream.
Author:
Chris Cranford
  • Field Details

  • Constructor Details

    • DeserializationContext

      public DeserializationContext()
  • Method Details

    • addValue

      public void addValue(Object value)
      Adds a deserialized value to the context's value list. The value list is used to locate and construct the target object once the object stream has been consumed. Therefore, values are to be added and thus deserialized in the order they appear in the object's constructor.
      Parameters:
      value - the deserialized value
    • getValues

      public List<Object> getValues()
      Gets all the deserialized values in the context.
      Returns:
      list of deserialized values.