Package zmq.io

Interface Metadata.ParseListener

Enclosing class:
Metadata

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

    Modifier and Type
    Method
    Description
    int
    parsed(String name, byte[] value, String valueAsString)
    Called when a property has been parsed.
  • Method Details

    • parsed

      int parsed(String name, byte[] value, 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.