Class CompletedCommandMetadata

  • 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 CompletedCommandMetadata
    extends SpecificRecordBase implements SpecificRecord
                        

    Metadata about a previously completed registration command.

    • Constructor Detail

      • CompletedCommandMetadata

        CompletedCommandMetadata()
        Default constructor.
      • CompletedCommandMetadata

        CompletedCommandMetadata(Integer index, String command)
        All-args constructor.
        Parameters:
        index - An index which can be used to determine the order of previously completed registration commands.
        command - The name of the command which was completed.
    • Method Detail

      • getIndex

         int getIndex()

        Gets the value of the 'index' field.

        Returns:

        An index which can be used to determine the order of previously completed registration commands.

      • setIndex

         void setIndex(int value)

        Sets the value of the 'index' field. An index which can be used to determine the order of previously completed registration commands.

        Parameters:
        value - the value to set.
      • getCommand

         String getCommand()

        Gets the value of the 'command' field.

        Returns:

        The name of the command which was completed.

      • setCommand

         void setCommand(String value)

        Sets the value of the 'command' field. The name of the command which was completed.

        Parameters:
        value - the value to set.
      • getEncoder

         static BinaryMessageEncoder<CompletedCommandMetadata> getEncoder()

        Return the BinaryMessageEncoder instance used by this class.

        Returns:

        the message encoder used by this class

      • getDecoder

         static BinaryMessageDecoder<CompletedCommandMetadata> getDecoder()

        Return the BinaryMessageDecoder instance used by this class.

        Returns:

        the message decoder used by this class

      • createDecoder

         static BinaryMessageDecoder<CompletedCommandMetadata> 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 CompletedCommandMetadata to a ByteBuffer.

        Returns:

        a buffer holding the serialized data for this instance

      • fromByteBuffer

         static CompletedCommandMetadata fromByteBuffer(ByteBuffer b)

        Deserializes a CompletedCommandMetadata from a ByteBuffer.

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

        a CompletedCommandMetadata instance decoded from the given buffer