Class AbstractGatewayDeltaEvent

  • java.lang.Object
    • org.apache.geode.modules.gatewaydelta.AbstractGatewayDeltaEvent
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.lang.String key  
      protected java.lang.String regionName  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void fromData​(java.io.DataInput in)
      Reads the state of this object as primitive data from the given DataInput.
      java.lang.String getKey()  
      Region getRegion​(Cache cache)  
      java.lang.String getRegionName()  
      void toData​(java.io.DataOutput out)
      Writes the state of this object as primitive data to the given DataOutput.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • regionName

        protected java.lang.String regionName
      • key

        protected java.lang.String key
    • Constructor Detail

      • AbstractGatewayDeltaEvent

        protected AbstractGatewayDeltaEvent()
      • AbstractGatewayDeltaEvent

        public AbstractGatewayDeltaEvent​(java.lang.String regionName,
                                         java.lang.String key)
    • Method Detail

      • getRegionName

        public java.lang.String getRegionName()
      • getKey

        public java.lang.String getKey()
      • fromData

        public void fromData​(java.io.DataInput in)
                      throws java.io.IOException,
                             java.lang.ClassNotFoundException
        Description copied from interface: DataSerializable
        Reads the state of this object as primitive data from the given DataInput.
        Specified by:
        fromData in interface DataSerializable
        Parameters:
        in - the DataInput to read from
        Throws:
        java.io.IOException - A problem occurs while reading from in
        java.lang.ClassNotFoundException - A class could not be loaded while reading from in
      • toData

        public void toData​(java.io.DataOutput out)
                    throws java.io.IOException
        Description copied from interface: DataSerializable
        Writes the state of this object as primitive data to the given DataOutput.

        Since 5.7 it is possible for any method call to the specified DataOutput to throw GemFireRethrowable. It should not be caught by user code. If it is it must be rethrown.

        Specified by:
        toData in interface DataSerializable
        Parameters:
        out - the DataOutput to write to
        Throws:
        java.io.IOException - A problem occurs while writing to out