Package zmq.io

Interface Metadata.ParseListener

  • Enclosing class:
    Metadata

    public static interface Metadata.ParseListener
    Call backs during parsing process
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      int parsed​(java.lang.String name, byte[] value, java.lang.String valueAsString)
      Called when a property has been parsed.
    • Method Detail

      • parsed

        int parsed​(java.lang.String name,
                   byte[] value,
                   java.lang.String valueAsString)
        Called when a property has been parsed.
        Parameters:
        name - the name of the property.
        value - the value of the property.
        valueAsString - the value in a string representation.
        Returns:
        0 to continue the parsing process, any other value to interrupt it.