Class ExternalEventResponse

  • All Implemented Interfaces:
    java.io.Externalizable , java.io.Serializable , java.lang.Comparable , org.apache.avro.generic.GenericContainer , org.apache.avro.generic.GenericRecord , org.apache.avro.generic.IndexedRecord , org.apache.avro.specific.SpecificRecord

    
    public class ExternalEventResponse
    extends SpecificRecordBase implements SpecificRecord
                        

    ExternalEventResponse details that a flow is waiting to receive an external event response and the expected request id.

    • Constructor Detail

      • ExternalEventResponse

        ExternalEventResponse()
        Default constructor.
      • ExternalEventResponse

        ExternalEventResponse(String requestId)
        All-args constructor.
        Parameters:
        requestId - The requestId of the response the flow is waiting for.
    • Method Detail

      • getRequestId

         String getRequestId()

        Gets the value of the 'requestId' field.

        Returns:

        The requestId of the response the flow is waiting for.

      • setRequestId

         void setRequestId(String value)

        Sets the value of the 'requestId' field. The requestId of the response the flow is waiting for.

        Parameters:
        value - the value to set.
      • getEncoder

         static BinaryMessageEncoder<ExternalEventResponse> getEncoder()

        Return the BinaryMessageEncoder instance used by this class.

        Returns:

        the message encoder used by this class

      • getDecoder

         static BinaryMessageDecoder<ExternalEventResponse> getDecoder()

        Return the BinaryMessageDecoder instance used by this class.

        Returns:

        the message decoder used by this class

      • createDecoder

         static BinaryMessageDecoder<ExternalEventResponse> createDecoder(SchemaStore resolver)

        Create a new BinaryMessageDecoder instance for this class that uses the specified SchemaStore.

        Parameters:
        resolver - a SchemaStore used to find schemas by fingerprint
        Returns:

        a BinaryMessageDecoder instance for this class backed by the given SchemaStore

      • toByteBuffer

         ByteBuffer toByteBuffer()

        Serializes this ExternalEventResponse to a ByteBuffer.

        Returns:

        a buffer holding the serialized data for this instance

      • fromByteBuffer

         static ExternalEventResponse fromByteBuffer(ByteBuffer b)

        Deserializes a ExternalEventResponse from a ByteBuffer.

        Parameters:
        b - a byte buffer holding serialized data for an instance of this class
        Returns:

        a ExternalEventResponse instance decoded from the given buffer